如果 URL 不等于指定的 URL,则应用此 jQuery?

发布于 2024-12-07 13:27:33 字数 390 浏览 2 评论 0原文

如果当前的 uURL 与指定的不同,则应用 jQuery。但这不起作用

<script type="text/javascript">
var myurl = http://example.com/document.html;
var currenturl = window.location
if(myurl == currenturl) {
    $("<span>url's match</span>").replaceAll("body"); // check replaceWith() examples
}
</script>

当前 URL 也可以是标准链接 http://example.com/ 或如示例所示。

if the current uURL is not same as specified then apply jQuery. BUT THIS WONT WORK

<script type="text/javascript">
var myurl = http://example.com/document.html;
var currenturl = window.location
if(myurl == currenturl) {
    $("<span>url's match</span>").replaceAll("body"); // check replaceWith() examples
}
</script>

Also current URL can be a standard link http://example.com/ or as shown in example.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

紫﹏色ふ单纯 2024-12-14 13:27:33

您需要引用您的 URL:

var myurl = http://site.com/document.html;

// Should be
var myurl = "http://site.com/document.html";

为了获得最佳实践,请不要省略此处的 ;

var currenturl = window.location
//---------------------------^^^^

You need to quote your URL:

var myurl = http://site.com/document.html;

// Should be
var myurl = "http://site.com/document.html";

For best practice, don't omit the ; here:

var currenturl = window.location
//---------------------------^^^^
蓦然回首 2024-12-14 13:27:33

第一行缺少引号:

var myurl = "http://site.com/document.html";

第三行应该是 !=

You are missing quotes on the first line:

var myurl = "http://site.com/document.html";

And it should be != on the third line

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文