刷新页面时a链接无法自动跳转的问题
换成具体的dom元素
实例:
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Document</title>
<script src="http://ajax.aspnetcdn.com/ajax/jQuery/jquery-1.7.2.min.js"> </script>
<script>
function run() {
$(function () {
$("a")[0].click();//jquery获取dom元素
document.getElementsByTagName("a")[0].click();//原生js获取dom元素
})
}
</script>
</head>
<body onload="run()">
<a href="https://www.baidu.com">百度</a>
</body>
</html>
参考链接:作者:beanLau