我正在使用php编写一个博客,因为我刚刚开始使用这个记录,但是我用这个PHP做得很好但Javascript我真的不太懂。
在我的博客上,我希望人们发表评论和讨论。
我想要的是什么:
每个评论都有一个显示的ID。
我想点击它然后Javascript应该把它放在textarea中留下评论。
多数人。
答案 0 :(得分:0)
(这个答案使用jQuery。)
// getting a reference to the TEXTAREA element
var $ta = $("#new_comment textarea");
$(".comment").click(function() {
var text = $(this).find(".text").text(); // depends of the structure
$ta.val(text);
});
<div class="comment">
<p class="author"> Peter </p>
<p class="text"> Good article! </p>
</div>