我試圖模擬一個按鍵與下面的代碼上...模擬按鍵與jQuery表單元素
jQuery('input[name=renameCustomForm]').live('keyup', function (e) {
console.log('pressed');
});
jQuery('body').click(function (e) {
console.log(jQuery('input[name=renameCustomForm]'));
var press = jQuery.Event("keypress");
press.which = 13;
jQuery('input[name=renameCustomForm]').trigger(press);
});
我得到了所以從其他職位的代碼,但它不工作。有人知道爲什麼
更新
固定它...它的出現引發「按鍵」不會自動觸發「KEYUP」
你只是想插入一個換行符? – pimvdb
不,keyup事件觸發ajax保存,但如果他們點擊元素我想它觸發保存。這就是我努力工作的部分 – Webnet
如果你只是簡單地調用ajax保存函數,你可能會更好。 – pimvdb