我尝试编写一个脚本,允许我在输入特定的URL时加载某些事件。
我的代码如下所示:
$(function(){ var url = window.location.pathname; $("url:contains('#Work')").animate({"left": "250"},"slow"); });
但它没有工作。有什么建议么?任何帮助是赞赏。
解决方法
$(function() { if ( document.location.href.indexOf('#Work') > -1 ) { $('#elementID').animate({"left": "250"},"slow"); } });