使textarea中的一些单词不可编辑

时间:2015-12-22 02:56:59

标签: jquery html

我有一个函数可以使用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]我希望其中的文字可以编辑。

这可能吗?

0 个答案:

没有答案