gpt4 book ai didi

javascript - 如果 URL 包含字符串然后运行 ​​jQuery 函数?

转载 作者:搜寻专家 更新时间:2023-11-01 04:57:59 24 4
gpt4 key购买 nike

如果我的 url 包含单词“test”,我的网站 id 会运行一个 jQuery 函数

我想做的是,如果我的 url 包含“rest”字符串,然后为页面上的元素添加边距?

我添加了一个 jSfiddle 来尝试展示我到目前为止所做的事情。

$(document).ready(function(){         
// How can I check to see if my url contains the word 'TEST' then run the below function?
$('.block-widget').css('margin-top, 252px')
});

最佳答案

使用 window.location 获取当前位置 url..

然后您可以根据条件应用 margin top 属性。

$(document).ready(function(){         
var pathname = window.location.pathname;
if(pathname.indexOf('text') > -1){
$('.block-widget').css('margin-top, 252px');
}
});

关于javascript - 如果 URL 包含字符串然后运行 ​​jQuery 函数?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12534245/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com