简体   繁体   中英

prevent radio button to be checked when clicked

我需要停止阻止单选按钮的默认行为以检查它是否在我单击之前检查,我正在使用.live('click', function (){})因为HTML使用AJAX添加到DOM

Just return false; from the handler.

Just return false

.live('click', function (){
        return false;
    }) 

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM