gpt4 book ai didi

javascript - 有关如何将此当前脚本链接到单选按钮的帮助

转载 作者:行者123 更新时间:2023-12-02 20:33:18 26 4
gpt4 key购买 nike

正如标题所述,我需要一些帮助来了解如何将这个用于显示/隐藏效果的 Jquery 脚本链接到单选按钮选择。

HTML

<tr>
<td><input type="radio" name="es_custom_reg" value="Y" /></td>
<td>Yes</td>
<td><input type="radio" name="es_custom_reg" value="N" /></td>
<td>No</td>
</tr>

Javascript

<script src="scripts/jquery.js" type="text/javascript"></script>

<script type="text/javascript">
$(document).ready(function(){

$('#slide').hide();

$('a').click(function(){

$('#slide').show('slow');

});

$('a#close').click(function(){
$('#slide').hide('slow');
})

});
</script>

最佳答案

试试这个:

$(function() {
$('#slide').hide();
$(':radio[name=es_custom_reg]').click(function() {
var value = $(this).val();
if (value === 'Y') {
$('#slide').show('slow');
} else if (value === 'N') {
$('#slide').hide('slow');
}
});
});

here's a demo .

关于javascript - 有关如何将此当前脚本链接到单选按钮的帮助,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3719821/

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