最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - Append text to text area with jquery issue - Stack Overflow

programmeradmin1浏览0评论

Im trying to make some buttons append text to a textarea with jquery, and I have it working, but only if I dont type anything into the textarea itself.

Code:

<textarea name="ments" id="ments" rows="20" style="margin-left: 0px; margin-right: 0px; width: 968px;"></textarea>
<div>
  <button>+petname</button>
  <button>+lastvisit</button>
  <button>+nextvisit</button>
</div>
<script>
$( "button" ).click(function() {
  var text = $( this ).text();
  $('#ments').append(text); 
});
</script>

This code is working, but the minute I type something else into that text area, the buttons no longer work??? WHY!!?? I just cant figure it out. Much thanks. Jason

Im trying to make some buttons append text to a textarea with jquery, and I have it working, but only if I dont type anything into the textarea itself.

Code:

<textarea name="ments" id="ments" rows="20" style="margin-left: 0px; margin-right: 0px; width: 968px;"></textarea>
<div>
  <button>+petname</button>
  <button>+lastvisit</button>
  <button>+nextvisit</button>
</div>
<script>
$( "button" ).click(function() {
  var text = $( this ).text();
  $('#ments').append(text); 
});
</script>

This code is working, but the minute I type something else into that text area, the buttons no longer work??? WHY!!?? I just cant figure it out. Much thanks. Jason

Share Improve this question edited Dec 16, 2013 at 3:12 PSL 124k21 gold badges256 silver badges243 bronze badges asked Dec 16, 2013 at 1:47 user1789437user1789437 4681 gold badge8 silver badges22 bronze badges
Add a ment  | 

2 Answers 2

Reset to default 7

Instead of doing append set val using its function argument syntax, do this way:

$('#ments').val(function(_, val){
    return val + text; 
}); 

Demo

change

$('#ments').append(text);

to

$('#ments').val( $('#ments').val() + " " + text );
发布评论

评论列表(0)

  1. 暂无评论