我想在wordpress网站的评论中添加默认文字。问题是插件“Inline Ajax Comments”不允许:
<textarea placeholder="Press enter to submit comment…" tabindex="4" id="comment" name="comment" class="inline-comments-auto-expand submit-on-enter"></textarea>
没有这个插件没有问题:
$(function () {
$('#Change').bind("click", '#Change', Change);
function Change() {$('#comment').text('My new text');};
});
(我不会给你插件代码,希望这不是问题)
感谢您的帮助!
答案 0 :(得分:0)
尝试
$('#comment')。html('我的新文字');
这应该有效,因为要将文本放在textarea中,它需要在标签之间进行。它不像使用属性的Assn输入(Val =“”)。