//引用呼叫函數function quote(name ,id){
var quoteMsg=document.getElementById(id).innerHTML;
var content=document.getElementById("comment");
quoteMsg=quoteMsg.replace(/
/g, "~^").replace(/
/g,' n');
content.focus();//要讓焦點在文字的右邊,這行程式碼要在前面
content.value=quoteMsg '【引用' name '】' 'n' '— —————————————————————' 'n'; //後填入文字
return false; //取消href的作用
}
//回覆自動輸入姓名函數
function backcomment(msg){
backdb=document.getElementById('comment');
backdb.focus();
backdb.value=msg 'n ';
return false;
//return true; 原來用錨來定位
}