document.getElementById(id).parentNode.removeChild(document.getElementById(id));
var br=document.getElementsByClassName('ace_layer ace_text-layer')[0];
document.getElementsByClassName('ace_content')[0].removeChild(br);
javascript之html元素文本输出
document.getElementById("demo").innerHTML="hello world";
document.getElementsByTagName("body")[0].setAttribute("type","text")
怎样移除元素某个属性
document.getElementsByClassName('marketingPlanLeft')[0].removeAttribute('style');
设置元素可见
document.getElementsByClassName('goOnShopping')[0].style.display='block';
document.getElementById('').style.diplay='block';
利用来JS控制页面控件显示和隐藏有两种方法,两种方法分别利用HTML的style中的两个属性,两种方法的不同之处在于控件隐藏后是否还在页面上占空位。
方法一:
document.getElementById("EleId").style.visibility="hidden";
document.getElementById("EleId").style.visibility="visible";
利用上述方法实现隐藏后,页面的位置还被控件占用,显示空白。
方法二:
document.getElementById(
"EleId"
).style.display=
"none"
;
document.getElementById(
"EleId"
).style.display=
"inline";
<input type="submit" id="su" value onclick="window.location='http://www.cnblogs.com/JuneZhang/archive/2010/11/25/1887575.html'">
<input type="submit" id="su" value="submit" onclick="location='http://www.cnblogs.com/JuneZhang/archive/2010/11/25/1887575.html'">
<input type="submit" id="su" value="submit" onclick="window.location.href='http://www.cnblogs.com/JuneZhang/archive/2010/11/25/1887575.html'">
①onclick="javascript:window.location.href='URL'"
②onclick="location='URL'"
③onclick="window.location.href='URL?id=11'"
onlick事件关闭当前窗口
="javascript:window.close()">
原文链接:https://www.f2er.com/js/992101.html