我有一个可以通过覆盆子pis和其他一切访问的网站。我需要在PI访问网站时显示键盘,而不是在其他所有访问权限时显示。我想我会运行一个简单的平台检查,因为PI返回Linux armv6l,其他一切将返回Win32。但我无法对逻辑进行简单的测试。
我在静态/ js中的Javascript browswer.js
function myFunction(){
if( /Linux armv6l|Linux armv7l/i.test(navigator.platform) ) {
txt = "<p>Browser CodeName: " + navigator.appCodeName + "</p>";
}
else {
txt= "<p>Browser Language: " + navigator.language + "</p>";
}
document.getElementById("example").innerHTML=txt;
}
我的HTML
<html>
<head>
<title>test</title>
</head>
<body>
<h1>Welcome</h1>
<p id="example"></p>
</body>
<script type="text/javascript" src="static/js/browser.js"></script>
</html>
我是Javascript和HTML的新手,所以我确信我做了一些错误但我无法弄明白。谢谢
答案 0 :(得分:0)
function systemdetect()
{
systemname=navigator.platform;
if (systemname.indexOf("Linux armv6l")!=-1) {
systemname="pi"
document.write("<p>this is a test.</P>")
}
else {if (systemname.indexOf("Win32")!=-1) {
systemname="MS 32"
document.write("<p>this is a Win32 tes.</P>")
}
else {systemname="N/A"}};
}
是我最终用来测试PI
的