如果我的 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')
});