Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
有什么方法可以检测您在 JavaScript 中所在的页面?
为什么我想知道这样我才能检测到我在哪个页面上,然后相应地设置元素的样式。
document.URL将为您获取当前页面的 URL。
document.URL
要检查您将使用的特定页面:
if ( document.URL.includes("homepage.aspx") ) { //Code here }
获取页面的 url 你在
location.href
或者
通过 id 将样式设置为元素:
document.getElementById('mydiv').style.border = '1px solid black';