执行JS
Posted 毛毛虫也疯狂
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了执行JS相关的知识,希望对你有一定的参考价值。
JS执行切换frame框架后点击
Window.frame[‘frame路径‘].frame[‘下级frame路径‘].document.getElementById("id").click()
隐藏元素
document.getElementById("id1").style.visibility=‘hidden‘ --隐藏元素
document.getElementById("id1").style.visibility=‘hidden‘ --显示元素
拖动滚动条
document.documentElement.scrollTop=100
document.body.scrollTop=100
window.scroll(x,y)
对表格隐藏某列(JS方式)
var res=document.querySelectorAll("[field=‘groupby‘]");
for(var i=0;i<res.length;i++){
var node = res[i];
node.style.display=‘none‘;
}
注:
node.style.display = ‘none‘ --会腾出页面位置
node.style.visibility = ‘hidden‘ --不会腾出位置,元素位置会出现一块空白
以上是关于执行JS的主要内容,如果未能解决你的问题,请参考以下文章