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.
我的主页中定义了一个口香糖模态。我想使用特定的 URL 启动模式。所以我确实重定向到 /home#modal_trigger 它会重定向到 /home 页面并自动启动模式。
我想到了。使用了以下代码:
var hashId = window.location.hash; hashId = hashId.match(/#[^?&\/]*/g); if (hashId == "#modal_triger") { $('.modal#modal_trigger').addClass('active'); }