노드 html 코드는 다음과 같습니다.
js edit noteTxt text, 기능은 다음과 같습니다:
함수 변경이름(noteTxtId){
var noteTxt = document.getElementById(noteTxtId);
noteTxt.style.display= "none";//.style.display= "차단"
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= "block";
noteTxt.innerHTML=text.value;
//text.style.display= "none";
div.removeChild(text);
}
}
}
//CSS 파일에서 스타일을 가져옵니다
함수 getStyle(obj, attr)
{
If(obj.currentStyle)
{
return obj.currentStyle[attr] //IE
~
return getCompulatedStyle(obj,false)[attr] //FF
}
}
css는 다음과 같습니다.
.img_1 {
너비: 80px;
높이:70px;
위치:절대
}
.noteText {
너비:80px;
높이:15px;
텍스트 정렬:가운데;
여백 상단:70px;
단어 나누기:모두 나누기
}
코드는 매우 간단하므로 여기서는 설명하지 않겠습니다. 친구들이 자유롭게 플레이하고 자신의 프로젝트에 사용할 수 있습니다.