在我的Web应用程序中的链接中,可以重定向到外部站点并在激活时加载特定的引导程序选项卡。我没有这个外部站点的源代码。
在我可以访问源代码的网站上,我可以使用类似以下的内容:
// trigger additional clicks
$ ('. tab-link') on ('click', function (event) {
// Prevent url change
event.preventDefault ();
// `this` is the clicked <a> tag
$ ('[data-toggle = "tab"] [trigger =' '+ this.hash +' "'').
})
是否可以仅通过浏览器的地址栏而无需在网站上放置代码?
答案 0 :(得分:2)
您可以将窗口对象上的location属性分配给所需的网址
// Sets the new location of the current window.
window.location = "https://www.example.com";