我使用1.7.2中,我明白這應該工作:如何使用jquery在輸入文本框上觸發模糊/聚焦事件?
// cell is a jquery representation of a <td> element
cell.append($("<input/>", { "type": "text" }).val(content));
cell.children()[0].focus();
cell.children()[0].on("blur", function() {
alert("blur");
}
輸入框追加,爭奪對焦,然後JavaScript控制檯告訴我:
Uncaught TypeError: Object #<HTMLInputElement> has no method 'on'
我會不勝感激,如果有人知道我能如何捕捉模糊/聚焦事件。