我的 jquery 单选按钮出了什么问题?
你好,我是 jquery 新手,请告诉我我的代码出了什么问题
<html>
<head>
<title>jQuery Hello World</title>
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js"></script>
</head>
<script type="text/javascript">
$("input[@name='chkBox']").click(function(){
if ($("#chkBox"]:checked").val() == 'a')
// Code for handling value 'a'
{
$("#msgid").html("This is Hello World by JQuery");
}
});
</script>
<body>
<input type="radio" name="chkBox" id="chkBox" value="a" />
<div id="msgid">
</div>
</body>
hello i am new to jquery can any one please tell me what's wrong with my code
<html>
<head>
<title>jQuery Hello World</title>
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js"></script>
</head>
<script type="text/javascript">
$("input[@name='chkBox']").click(function(){
if ($("#chkBox"]:checked").val() == 'a')
// Code for handling value 'a'
{
$("#msgid").html("This is Hello World by JQuery");
}
});
</script>
<body>
<input type="radio" name="chkBox" id="chkBox" value="a" />
<div id="msgid">
</div>
</body>
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
你的剧本里有很多错误的地方。
$(document).ready( function() { } )
中,否则稍后将无法看到复选框被添加到 DOM 中。固定脚本:
You have quite a few things wrong in the script.
$(document).ready( function() { } )
as otherwise it will not be able to see the checkbox being added to the DOM later.Fixed script:
不仅仅是将其放入 onload 或 domready 中,您的语法和 jquery 选择器中也存在错误。请参阅下面的工作固定版本:
not just putting it in an onload or domready, there's errors in your syntax and jquery selectors too. see the working fixed version below: