こんにちは <スクリプト言語="javascript">
var textareaId = document.getElementById("textareaId");
var adddelTextId = document.getElementById("adddelTextId");
varnormalTextId = document.getElementById("normalTextId");
var addTextId = document.getElementById("addTextId");
var delTextId = document.getElementById("delTextId");
function initLoad(){
adddelText =normalTextId.innerHTML addTextId.innerHTML;
textareaId.innerHTML = adddelText;
}
function hh(){
adddelTextFunc(true, ",IT-Homer");
adddelTextFunc(false, ",Sunboy_2050");
}
function adddelTextFunc(isAdd, txt){
if(isAdd){ //
addTextId.innerHTML = txt を追加します。
} else { // del
delTextId.innerHTML = txt;
}
adddelText =normalTextId.innerHTML addTextId.innerHTML;
textareaId.innerHTML = adddelText;
}