我检查了所有主题,但我根本不知道为什么我的脚本不起作用:(
<script type="text/javascript">
$('input[name=pic]').click(function() {
$(this).closest('ul').find(".green").removeClass("green");
if($(this).is(':checked')) {
$(this).closest('ul').find("li").addClass('green');
}
});
</script>
another script what is making the li tags
var link = document.createElement('li');
var parts = result.tbUrl.split('::');
link.innerHTML = "<label for='asd"+i+"'><img src='"+result.tbUrl+"' /></label><br /><input id='asd"+i+"' type='radio' name='pic' value='http://"+parts[1]+"' />";
contentDiv.appendChild(link);
etc...
<ul>
<li><input type="radio" name="pic" value="asd"/>asd</li>
<li><input type="radio" name="pic" value="b"/>asd</li>
<li><input type="radio" name="pic" value="ba"/>asd</li>
<li><input type="radio" name="pic" value="bs"/>asd</li>
<li><input type="radio" name="pic" value="bc"/>asd</li>
</ul>
请帮助我!
答案 0 :(得分:2)
$('#pic')
是ID选择器,您的输入没有ID。你可能意味着'$('input[name=pic]')
。
此外,您正在将green
课程应用于<li>
,但之后尝试在.green
内找到<{1}}元素。也许你想要.parents('li')
代替?
答案 1 :(得分:0)
bobince是正确的。您需要绑定$(document).ready
我也使脚本更有效率。
<script type="text/javascript">
$(document).ready(function() {
$(':radio[name=pic]').click(function() {
$(this).siblings().removeClass("green").end()
.addClass("green"); //a click always makes a radio button true, so no need to check
});
});
</script>