有没有办法检测您在JavaScript中使用的页面?
为什么我想知道是为了能够检测到我所在的页面,然后相应地设置元素的样式。
答案 0 :(得分:3)
document.URL
会为您提供当前页面的网址。
要检查您将使用的特定页面:
if ( document.URL.contains("homepage.aspx") ) {
//Code here
}
答案 1 :(得分:2)
获取网页的网址
location.href
或者
document.URL
通过id:
将样式设置为元素document.getElementById('mydiv').style.border = '1px solid black';