如果 URL 不等于指定的 URL,则应用此 jQuery?
如果当前的 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您需要引用您的 URL:
为了获得最佳实践,请不要省略此处的
;
:You need to quote your URL:
For best practice, don't omit the
;
here:第一行缺少引号:
第三行应该是 !=
You are missing quotes on the first line:
And it should be != on the third line