我使用TextExt,textext.plugin.tags.js

jQuery("#InputID").textext({ plugins: 'tags' }).keypress(function (event) {

                      //See if the key pressed is 'enter'
                      if (event.which == 13) {
                         alert("pressed key is enter");
                      });


但按Enter键后,警告消息不显示

我想捕捉按键输入和KeyUp,有什么建议吗?

最佳答案

查看tags文档,您似乎要使用事件enterKeyPress

http://textextjs.com/manual/textext.html

我不相信textExt({plugin: 'tags'})支持keypress()方法。尝试这个:

jQuery("#InputID").textext({ plugins: 'tags' }).on({
    enterKeyPress: function(event) { alert('enter!'); }
});

09-25 10:35