この記事の例では、js で div ノード名を編集する方法を説明します。皆さんの参考に共有してください。具体的な実装方法は以下の通りです。
ノードの HTML コードは次のとおりです:
var div = noteTxt.parentNode;
if(!document.getElementById("noteInput")){
var text=document.createElement("input");
text.type="text";
text.id="noteInput";
text.style.width=getStyle(noteTxt,'width');
text.style.height=getStyle(noteTxt,'height');
text.style.marginTop=getStyle(noteTxt,'marginTop');
text.style.textAlign=getStyle(noteTxt,'textAlign');
text.value=noteTxt.innerHTML;
div.appendChild(text);
text.select();
text.onblur=function(){
noteTxt.style.display= "ブロック";
noteTxt.innerHTML=text.value;
//text.style.display= "none";
div.removeChild(text);
}
}
}
// CSS ファイル内のスタイルを取得します
関数 getStyle(obj, attr)
{
If(obj.currentStyle)
{
return obj.currentStyle[attr]; //IE
;
return getComputedStyle(obj,false)[attr] //FF
;
}
}
高さ:15px;
Text-align:center;
マージントップ:70px;
単語区切り:すべて区切り
}