javascript window.prompt()自动点击是

时间:2018-03-30 12:46:02

标签: javascript html

我想使用window.prompt()

在javascript中自动点击

如何使用javascript自动点击“是”

以下是一个示例代码:

<!DOCTYPE html>
<html>
<body>

<h2>PS Prompt test</h2>

<button onclick="Function()" id="test">send value</button>

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

<script>
function Function() {
    var txt;
    var text = prompt("Please enter text:", "example text");
    if (text == null || text == "") {
        txt = "User cancelled the prompt.";
    } else {
        txt = "Your text is: " + text;
    }
    document.getElementById("demo").innerHTML = txt;
}
</script>

</body>
</html>

脚本应使用新值替换默认值,然后单击按钮

谢谢!

2 个答案:

答案 0 :(得分:1)

在默认浏览器中不可能,如果使用CefSharp构建自己的界面,则可以覆盖默认的提示行为。

你可以做什么,但我不建议:

window.prompt = function(text, defaultText){ return defaultText; }

这样您将覆盖所有提示对话框。

答案 1 :(得分:0)

使用提示时,JavaScript执行会在此时停止。没有办法让它自动化。我没有理由这么做,因为你可以直接设置文字吗?