Add text to textarea - Jquery

蓝咒 提交于 2019-11-28 08:52:28

Just append() the text nodes:

$('#replyBox').append(quote); 

http://jsfiddle.net/nQErc/

That should work. Better if you pass a function to val:

$('#replyBox').val(function(i, text) {
    return text + quote;
});

This way you avoid searching the element and calling val twice.

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!