我希望在输入按钮上更新textarea内容onclock
例如:
<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)
我想要javascript代码,而不是jquery
答案 0 :(得分:2)
function update(name){
document.getElementById('comment_content').value = '@/' + name + '/';
}
答案 1 :(得分:0)
function update(val)
{
document.getElementById('comment_content').value = val;
}
滚动到底部是:
window.scrollTo(0,document.body.scrollHeight);