作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
正如标题所述,我需要一些帮助来了解如何将这个用于显示/隐藏效果的 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');
}
});
});
关于javascript - 有关如何将此当前脚本链接到单选按钮的帮助,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3719821/
我是一名优秀的程序员,十分优秀!