0

我正在尝试在 wordpress 网站上自定义对讲插件。单击href链接时,我需要触发一条消息(因此在textarea上模拟输入键)。

这是使用的代码:

jQuery('body').on('click', '.start-chat-btn-advice', function () {
  var e = jQuery.Event("keydown");
  e.which = 13;  
  jQuery("textarea").trigger(e);            
}); 
4

1 回答 1

0

听起来你需要

<form action="chat" id="form1">
  <div id="container">
    <textarea id="chatText"></text>
    <a href="#" class=".start-chat-btn-advice">Click</a>
  </div>
</form>

$(function() {
  $("#container").on("click",".start-chat-btn-advice",submitIt);
  $("#chatText").on("keydown",function(e) { 
    if (e.which==13) submitIt() 
  });
});
于 2016-06-10T14:51:43.710 回答