引导程序按钮下拉列表中的更改事件无法正常运行。可能是什么原因?如何解决这个问题?
以下是我的小提琴。我想发一个复选框更改事件,但令人惊讶的是下面的代码没有触发。
http://jsfiddle.net/20hLtzvr/18/
$('#chk0').click(function()
{
alert('hello world');
});
答案 0 :(得分:2)
您在设置ID
时忘记了"
替换
$('#citycountylist ul').append('<li><a href="#"><input type="checkbox" class="chk" id=' + 'chk' + index + ' />' + ' ' + json.NewYork[index].name + ' </a></li>');
通过
$('#citycountylist ul').append('<li><a href="#"><input type="checkbox" class="chk" id="' + 'chk' + index + '" />' + ' ' + json.NewYork[index].name + ' </a></li>');