的
onclick事件中添加如下代码:
if(document.getElememtById('oDiv').style.display
==
'block'){
//oDiv
为
需要打开的DIV层的ID
//判断其css
的
display
是否为
block,如果是,证明该div正在显示,需要隐藏
document.getElememtById('oDiv').style.display
=
none
//隐藏
}else{
//如果不是block证明该div正在隐藏,需要显示
document.getElememtById('oDiv').style.display
=
'block'
//显示
}
需要准备的材料分别是:电脑、html编辑器、浏览器。
1、首先,打开html编辑器,新建html文件,例如:index.html,并且其中有一个div中有a标签。
2、在index.html的<script>标签中,输入js代码:window.location.href = 'http://' + $('div a').attr('href')。
3、浏览器运行index.html页面,此时取出了div中a标签中的百度知道链接并自动点击跳转了。