我有一个函数可以使用jquery
将一些文本插入到textarea中<a onclick="Quote(<?php echo $id ?>); return false;">Quote</a>
功能
function Quote(id) {
var text = $('#message').val();
var quotetext = '[quote='+$('#author_'+id).html()+';'+$('#postid'+id).html()+']'+$('#rawpost_' + id).val() + '[/quote]\n';
$('#message').focus().val('').val(quotetext + text);
}
[quote=Santa;1337]ho ho ho are there any nice programmers here?[/quote]
如果您无法修改[quote=something;2949]
和[/quote]
我希望其中的文字可以编辑。
这可能吗?