jquery:如果 url 包含 #work 则执行某些操作
我尝试编写一个脚本,允许我在输入特定网址时加载某些事件。
我的代码如下所示:
$(function(){
var url = window.location.pathname;
$("url:contains('#Work')").animate({"left": "250"}, "slow");
});
但它不起作用。有什么建议吗?任何帮助表示赞赏。
I tried to write a script which allow me to load certain events when I enter specific url.
My code looks like this:
$(function(){
var url = window.location.pathname;
$("url:contains('#Work')").animate({"left": "250"}, "slow");
});
But it doesnt work. Any suggestions? Any help is appreciated.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
window.location.href 正在将 URL 拉入变量中,因此您无法使用该方法搜索#Work。尝试:
window.location.href is pulling the URL into a variable, so you can't search for #Work using that method. Try: