为什么虽然触发了事件,但警报不起作用?
Why alert is not working though event is fired?
当我尝试为 table 的未来行动态构建 jquery-ui 日期选择器时。我发现了一些奇怪的东西。下面的代码是问题所在。
$('#emp-table').live('focus','.obj-datepicker'function(){
alert('this is not working though function work');
$(this).datepicker({
isActiveX: true
}).next('a').click(function() {
$(this).prev().eq(0).datepicker("show");
});
})
我用谷歌搜索了这个奇怪的问题,但没有弄清楚。
Why alert is not working though event is fired???
$('#emp-table').live('focus','.obj-datepicker'function(){
这是您测试的确切代码吗?我觉得'.obj-datepicker'
后面少了一个逗号,你可以删掉再试
当我尝试为 table 的未来行动态构建 jquery-ui 日期选择器时。我发现了一些奇怪的东西。下面的代码是问题所在。
$('#emp-table').live('focus','.obj-datepicker'function(){
alert('this is not working though function work');
$(this).datepicker({
isActiveX: true
}).next('a').click(function() {
$(this).prev().eq(0).datepicker("show");
});
})
我用谷歌搜索了这个奇怪的问题,但没有弄清楚。
Why alert is not working though event is fired???
$('#emp-table').live('focus','.obj-datepicker'function(){
这是您测试的确切代码吗?我觉得'.obj-datepicker'
后面少了一个逗号,你可以删掉再试