$(function () {
$(".items").on('click', 'a', function () {
//nothing gets executed here, alert wont come
alert("doesn't work")
}, function () {
//this function gets executed
alert("works")
});
});
为什么第一个功能不起作用,.on()
不应该以这种方式工作?我的替代方案是什么?