У меня есть этот код в общем файле JavaScript в моем проекте asp.net.
jQuery-Lint возвращает «Вы использовали один и тот же селектор более одного раза» всякий раз, когда я наводю курсор мыши на одну из кнопок, на которую воздействовала эта функция.
//turns all the buttons into jqueryUI buttons
//#mainBody is on the master page, #childBody is on the modal page.
$("#mainBody button, #mainBody input:submit, #mainBody input:button, #childBody button, #childBody input:submit, #childBody input:button").livequery(function () {
$(this).button().each(function (index) {
$(this).ajaxStart(function () {
$.data(this, "old_button_val", $(this).val());
$.data(this, "old_button_disabled", $(this).button("option", "disabled"));
$(this).button("option", "disabled", true).val("Wait...");
}).ajaxStop(function () {
$(this).val($.data(this, "old_button_val")).button("option", "disabled", $.data(this, "old_button_disabled"));
}).ajaxError(function () {
$(this).val($.data(this, "old_button_val")).button("option", "disabled", $.data(this, "old_button_disabled"));
});
});
});
Аналогичный вопрос был задан здесь .