📄 setinnerhtml.txt
字号:
/*
Name: 设置innerHTML和获取innerHTML值
Author: shemily
Create: 2007-04-29
Version: 1.0
Language: Javascript
*/
function setInnerHTML(objId, html){ //set innerHTML
try{
var obj = document.getElementById(objId);
obj.innerHTML = html;
}catch(exception){
alert("Make sure the object id is correct!");
}
}
function getInnerHTML(objId){ //get innerHTML
try{
var obj = document.getElementById(objId);
return obj.innerHTML;
}catch(exception){
alert("Make sure the object id is correct!");
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -