【发布时间】:2010-04-09 03:07:24
【问题描述】:
我在 Drupal 中有一个 AJAX 聊天室模块,我试图在用户单击 Insert Tex 时将 BBCode stlye tex 标签插入提交框。我第一次设法让以下代码工作,但之后当我点击Insert Tex 时,它会插入tex 标签三次。
$('#edit-chatroom-message-entry-submit').click(function (e) {
e.preventDefault();
e.stopPropagation();
if ($('#edit-chatroom-message-entry-box').val()){
Drupal.chatroom.postMessage($('#edit-chatroom-message-entry-box').val());
$('#edit-chatroom-message-entry-box').val('').focus();
}
});
$('#edit-chatroom-tex-submit').click(function (e) {
e.preventDefault();
e.stopPropagation();
$('#edit-chatroom-message-entry-box').val($('#edit-chatroom-message-entry-box').val() + '[tex][/tex]');
});
如果可以提出建议以使代码正常工作,我将不胜感激。
【问题讨论】: