gpt4 book ai didi

jquery - .attr ('checked' ,'checked' )不起作用

转载 作者:行者123 更新时间:2023-12-03 21:30:13 33 4
gpt4 key购买 nike

我正在尝试收听广播。以下均不起作用:

[编辑]

$('selector').attr('checked','checked');
$('selector').attr('checked',true);

下面代码中的两个alert()分别显示“1”和“a”。我的期望是第二个alert()显示“b”。

Opera 确实检查了浏览器中的第二个单选框,但其元素检查器 Dragonfly 显示 DOM 未更改。

[编辑结束]

在发布此问题之前,我已阅读常见问题解答:

http://docs.jquery.com/Frequently_Asked_Questions#How_do_I_check.2Funcheck_a_checkbox_input_or_radio_button.3F

非常感谢您的帮助!

TIA

xhtml 页面和代码如下:

<!DOCTYPE html 
PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
<title>Weird Behavior</title>
<script type="text/javascript" src="scripts/jquery.js"/>
<script type="text/javascript">
function clickme(){
alert($('input[name="myname"][value="b"]').length);
$('input[name="myname"][value="b"]').attr('checked','checked');
$('#b').attr('checked',true);
alert($('input[name="myname"][checked]').val());
};
</script>
</head>
<body>
<form action="">
<fieldset>
<legend>Why check is not switched?</legend>
<input type="radio" name="myname" value="a" id="a" checked="checked"/>A
<input type="radio" name="myname" value="b" id="b"/>B
</fieldset>
</form>
<p>
<button type="button" onclick="clickme()">click me</button>
</p>
</body>
</html>

最佳答案

 $('.checkbox').attr('checked',true);

not work with from jQuery 1.6 .

改为使用

$('.checkbox').prop('checked',true);
$('.checkbox').prop('checked',false);

完整的解释/示例和演示可以在 jQuery API 文档中找到 https://api.jquery.com/attr/

关于jquery - .attr ('checked' ,'checked' )不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5270689/

33 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com