这是我的代码,即使在使用Delegates之后,在ajax页面加载后也无法工作。
$(function () {
$(document).on('focus', '[placeholder]', (function () {
.....
})).on('blur', (function () {
...
})).blur();
$('[placeholder]').parents('form').on('submit', (function () {
$(this).find('[placeholder]').each(function () {
..... }
})
}));
});
我不确定我是否以适当的方式使用了代表。请提出建议!
答案 0 :(得分:0)
您不是委托表单提交:
$(document).on('submit', 'form', (function () {
$(this).find('[placeholder]').each(function () {
..... }
})
}));