我正在使用引导程序所见即所得。
我需要在修改文本并且输入框模糊后发生事件。
我看到了下面的代码,但这不是我想要的事件
// bind the event event
$('#wysiwyg').wysiwyg('document').keypress(function(e) {
// This will cancel the keypress
e.preventDefault();
// alert
alert('Keypress detected!');
});
我希望在修改文本并且输入框模糊后发生事件。
我想要的事件类似于 jQuery 中的“.change()”。
我希望你能帮助我。。谢谢。。