我使用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'
我会不胜感激,如果有人知道我能如何捕捉模糊/聚焦事件。