-
09-06
-
12-27
-
01-08
-
12-31
-
12-31
Warning: error_log(/home/wwwroot/zym.qw1688.net/cache/error_log.php): failed to open stream: Permission denied in /home/wwwroot/zym.qw1688.net/yzmphp/core/class/debug.class.php on line 63
发布时间:2021-01-08 13:06:20
文章来源:原创
访问次数:2
09-06
12-27
01-08
12-31
12-31
jQuery获取当前点击的元素
/*jQuery获取当前点击的元素*/
$('input').click(function(e){ e.val(1);});
/**/jQuery input点击事件
/*jQuery input点击事件*/
$("input").each(function(i,_i){
if($(_i).is(':checked')){
alert("选中");/*选中后执行*/
}else{
alert("未选中");
}
});
jQuery当前节点事件
/判断选择框选择情况 编写选择框异步提交时遇到的问题/
$('input').click(function(){
/*$(this) 当前节点内容*/
$(this).each(function(i,_i){
if($(_i).is(':checked')){
$(this).val('ON');/*当选中 设置值ON*/
}else{
$(this).val('OFF');/*选中取消 设置值OFF*/
}
});
});本文链接:http://www.hzlm.net/javascript/81.html