gpt4 book ai didi

jquery - 如果 url 包含其中一个字符串,则将 css 添加到头部

转载 作者:行者123 更新时间:2023-11-28 06:08:31 26 4
gpt4 key购买 nike

我正在尝试编写一个脚本,如果它的 url 包含四个可能的字符串之一,它将样式表添加到 html 文档

但是,该代码仅适用于包含 string1 且不包含任何其他字符串的 url。

$(document).ready(function() {
if (window.location.href.indexOf("string1"||"string2"||"string3"||"string4") > -1) {
if (document.createStyleSheet) {
document.createStyleSheet('path/to/css.css');
}
else {
$("head").append($("<link rel='stylesheet' href='path/to/css.css'/>"));
}
}
});

我做错了什么?

最佳答案

你最好使用正则表达式:

 if (window.location.href.match(/(string1|string2|string3|string4)/) != null) {

关于jquery - 如果 url 包含其中一个字符串,则将 css 添加到头部,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36321177/

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