我尝试根据关键字搜索执行document.writeln
功能。如果用户搜索条款:
**widget xyz
xyz **widget**
my **widget**
的作品
搜索目前以此网址格式显示:
?Search=**widget**+xyz
?Search=xyz+**widget**
?Search=my+**widget**+
作品
我想在搜索中包含关键字document.writeln
的网页上执行**widget**
。
我在这里:
示例1:)
if (location.search == "**widget**")
document.writeln("\n<style type='text/css'>CUSTOM CSS</style>\n\n");
示例2:)
if (location.search == "**widget**"!= -1)
document.writeln("\n<style type='text/css'>CUSTOM CSS</style>\n\n");
第二种示例有效,但也会在其他关键字搜索结果中显示WriteIn
。非常感谢任何帮助!