gpt4 book ai didi

jQueryUI 单选/复选按钮未以编程方式更改

转载 作者:技术小花猫 更新时间:2023-10-29 12:45:43 27 4
gpt4 key购买 nike

我可以预见地读取 jQueryUI 单选按钮的值,但是,我无法以编程方式设置它。无论我使用哪种方法更改单选按钮的值,jQueryUI 界面都不会更新其界面。

<div id="radio">
<input type="radio" name="radio" value="true" checked="checked" />Yes
<input type="radio" name="radio" value="false" />No
</div>

<script type="text/javascript">
$('#radio').buttonset();

// One of the many ways that won't work.
$('[name="radio"]:radio:checked').val("false");
</script>

最佳答案

更新值后,如下所示:

$('[name="radio"][value="false"]').attr("checked", true);

你需要告诉 jQuery UI 更新,像这样:

$('#radio').buttonset("refresh");

You can give it a try here .

关于jQueryUI 单选/复选按钮未以编程方式更改,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3569794/

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