我有一个引用功能,当用户点击该文本的“QUOTE”时(例如:“这是我的文字”),在我的textarea中将显示“>这是我的文字”。用户可以在该文本下方添加文本。目前,在我引用之后,然后点击textarea,我的光标在新行,但是当我添加textarea时,我的引用文本和文本输入在一行
这是我的HTML
<span style='float:left' id="topmod"></span><br/>
<textarea class="text ui-widget-content ui-corner-all" name='modrepmsg' id='modrepmsg' cols='100' rows='8' tabindex='1004'></textarea><br/>
<br/>
<span id="modquote" style="float:left;text-decoration:underline;">QUOTE</span>
<input type="hidden" name="repmsg" id="repmsg" />
<span id="modadd" class="button_form" style="cursor:pointer;"><?php echo $lang['REQUEST_ADD_B']; ?></span>
这是我的Jquery引用
$( '#modquote')
.click(function() {
var comment = $('#repmsg').val();
var quote = ">" + comment + "\n";
$('textarea#modrepmsg').html(quote);
});
这里是我的jquery for save
$( '#modadd')
.click(function() {
var repmsg = $('#modrepmsg').val();
window.location = 'reply_msg.php?msg=' + repmsg;
});
在我的reply_mg.php中,我请求了msg $msg = $_REQUEST['msg'];
请帮帮我。感谢。
答案 0 :(得分:0)
托盘:
$('#textbox').keypress(function (e) {
if (e.keyCode == 13) { // get Enter key
// your code here
}
});