常用Javascript集锦【不定期更新】

前端之家收集整理的这篇文章主要介绍了常用Javascript集锦【不定期更新】前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

怎样用javascript删除某个HEML标签

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中的两个属性,两种方法的不同之处在于控件隐藏后是否还在页面上占空位。

 
  方法一:

@H_502_48@document.getElementById("EleId").style.visibility="hidden";
document.getElementById("EleId").style.visibility="visible";

  利用上述方法实现隐藏后,页面的位置还被控件占用,显示空白。
  方法二:

@H_502_48@ document.getElementById("EleId").style.display="none";
document.getElementById("EleId").style.display="inline";

  利用上述方法实现隐藏后,页面的位置不被占用。

onlick事件跳转到其他页面/跳转到指定url

☆如果是本页显示可以直接用location,方法如下:

<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'"
☆如果页面中有frame可以将在location前面添加top.mainframe.frames['right_frame'].location

onlick事件关闭当前窗口

="javascript:window.close()">

 

原文链接:https://www.f2er.com/js/992101.html

猜你在找的JavaScript相关文章