0

入力ボタンのテキストエリアコンテンツをオンクロックで更新したい

例えば:

<input type="button" value="Reply" onclick="update('Ahmed')">
<textarea id="comment_content"></textarea>
//i want set textarea content to @/Ahmed/ onclick on the above button
//example for the javascript function
function update(var){
getElementByID('comment_content') = '@/'.var.'/'
//set the textarea to @/Ahmed/
}

別の質問があります。ボタンをクリックして、ページの最後(new_comment div)にユーザーを送信します。

jqueryではなくjavascriptコードが欲しい

4

2 に答える 2

2
function update(name){
    document.getElementById('comment_content').value = '@/' + name + '/';
}
于 2012-06-17T13:23:22.667 に答える
1
function update(val)
{
   document.getElementById('comment_content').value = val;
}

一番下までスクロールすると、次のようになります。

window.scrollTo(0,document.body.scrollHeight);
于 2012-06-17T13:25:41.717 に答える