我將blur函數綁定到類名爲「qtyToPick」的文本框。現在,如果我更改具有類「chkSelect」的複選框的選中屬性,現在我想調用相同的模糊函數。jquery函數調用
我該怎麼辦?
$('.qtyToPick').live('blur', function() {
// Code here
});
我將blur函數綁定到類名爲「qtyToPick」的文本框。現在,如果我更改具有類「chkSelect」的複選框的選中屬性,現在我想調用相同的模糊函數。jquery函數調用
我該怎麼辦?
$('.qtyToPick').live('blur', function() {
// Code here
});
定義的功能,並將其綁定到對相應要素相應的事件:
var theFunc = function() { /* Code here */ };
$('.qtyToPick').live('blur', theFunc);
$('.chkSelect').live('change', theFunc);
$('#chkSelect').change(function() {
$('.qtyToPick').blur();
});
@SLaks。我的問題有什麼錯誤嗎? – Rauf 2011-03-21 14:26:34
您應該通過用四個空格縮進來格式化代碼。 ()# – SLaks 2011-03-21 14:33:04