我正在尝试在wordpress网站上自定义内部通信插件。 我需要在单击href链接时触发消息,(因此在textarea上模拟输入键)。
这是使用的代码:
jQuery('body').on('click', '.start-chat-btn-advice', function () {
var e = jQuery.Event("keydown");
e.which = 13;
jQuery("textarea").trigger(e);
});
答案 0 :(得分: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()
});
});