gpt4 book ai didi

javascript - 仅向使用 Chrome 18 的用户显示单个网页

转载 作者:行者123 更新时间:2023-12-03 05:11:42 26 4
gpt4 key购买 nike

您好,我如何才能只向使用 chrome 18 的人显示网页? ,如果他们没有 chrome 18,则不应显示页面,我如何使用 html 代码创建类似的内容?并且如果他们有 Firefox 或 Safari,则该网页不得出现

最佳答案

1) 将您只想向 Chrome 18 用户显示的内容放入 <div> 中,与 display: none;以其风格:

<div id="hiddenContent" style="display: none;">
My hidden content.
</div>

2) 添加<script>标签,代码如下:

function GetChromeVersion() {     
var raw = navigator.userAgent.match(/Chrom(e|ium)\/([0-9]+)\./);
return raw ? parseInt(raw[2], 10) : false;
}
if (GetChromeVersion() == 18)
document.getElementById("hiddenContent").style.display = "";

这是一个实例:

<div id="hiddenContent" style="display: none;">
My hidden content.
</div>

<script>
function GetChromeVersion() {
var raw = navigator.userAgent.match(/Chrom(e|ium)\/([0-9]+)\./);
return raw ? parseInt(raw[2], 10) : false;
}
if (GetChromeVersion() == 18)
document.getElementById("hiddenContent").style.display = "";
</script>

关于javascript - 仅向使用 Chrome 18 的用户显示单个网页,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41789544/

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