1

我有一个基本的 javascript 提示,要求用户输入许多标签进行打印。这在 Windows Mobile 6.5 中运行良好,但我们最近升级到 6.5.3,现在提示窗口中缺少 OK 按钮。我们现在所能做的就是取消提示。我们已经在 2 种不同的设备上对此进行了测试,所以我认为这不是硬件问题。有没有其他人遇到过这个问题或知道我可以尝试的其他任何事情?

这是代码:

var n = 0;
n = prompt("Number of labels to print?", "3");

作为一个额外的测试,我尝试使用 w3schools.com 中的 JS 提示示例,我得到了相同的结果。确定按钮丢失。 http://www.w3schools.com/js/tryit.asp?filename=tryjs_prompt

这是 w3schools 测试的截图:

w3schools 测试截图

4

1 回答 1

0

w3schools 提示代码工作正常:

<!DOCTYPE html>
<html>
<body>

<p>Click the button to demonstrate the prompt box.</p>

<button onclick="myFunction()">Try it</button>

<p id="demo"></p>

<script>
function myFunction()
{
var x;

var person=prompt("Please enter your name","Harry Potter");

if (person!=null)
  {
  x="Hello " + person + "! How are you today?";
  document.getElementById("demo").innerHTML=x;
  }
}
</script>

</body>
</html>

看看这三个从真正的 WEH 6.5.3 设备上截取的屏幕截图:

第一个提示页面 提示画面 结果页面

我假设你有一个注册表集

[HKEY_LOCAL_MACHINE\Software\Microsoft\Shell\BubbleTiles]
"HardwareDoneKeyEnabled"=dword:00000001

它隐藏了软件确定/完成按钮!

于 2014-02-12T13:22:06.047 回答