编程语言
首页 > 编程语言> > JavaScript 有用的函数

JavaScript 有用的函数

作者:互联网

控制网页前进/后退

history.forward();
history.back();

选择元素点击

// https://yihui.org/
var topbar = document.getElementsByTagName("a")
console.log(topbar[3].href)
topbar[3].click()

标签:函数,topbar,JavaScript,back,有用,href,click,history
来源: https://www.cnblogs.com/malcolmwallace/p/14052099.html