Jquery使用Textchange事件

傅新
2023-12-01

在FIREFOX下可以使用Textchange插件来实现,附下载地址:

http://www.zurb.com/playground/jquery-text-change-custom-event

使用方法:

$('#exhibitb').bind('textchange', function (event, previousText) {
  $('#output').append('<p>Text changed from <strong>' + 
    previousText + '</strong> to <strong>' + $(this).val() + 
    '</strong> </p>');
});

但是此插件使用之后发现在IE下无法使用,然后在网上搜了搜原来在IE下可以使用onpropertychange事件来实现

(onpropertychange事件在FF下不能使用)

最后通过合并两者来完成了Textchange事件




 类似资料: