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.
这是我的目标:我想单击一个页面上的特定链接,在加载的页面上,我想更改一个特定的类。我知道 onClick 功能,但不确定是否可以在这里使用。有没有办法做到这一点?
非常感谢。
这个 jquery 会做你想做的事:
$(document).ready(function(){ var anchor = '#myanchor'; if (window.location.href.indexOf(anchor) > 0) { //do what you want here, change classes, etc } });
您应该将此 javascript 放在第二页上,更改#myanchor您使用的锚点。
#myanchor
确保在第二页中包含 jquery 库以使其正常工作。