需要准备的材料分别是:电脑、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标签中的百度知道链接并自动点击跳转了。
举个例子:
<html><body><input type="button" value="跳转到详细页" onclick="jump()"></body>
</html>
js:
function jump()
{
window.location.href="是跳转的地址"
}
定义和用法
<a>标签定义超链接,用于从一张页面链接到另一张页面。
<a>元素最重要的属性是 href 属性,它指示链接的目标。
<a href="javascript:void(0)" onclick="window.location.href='xxx'">xxx就是你要跳转的链接地址
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)