我想使用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>
谢谢!
答案 0 :(得分:1)
在默认浏览器中不可能,如果使用CefSharp构建自己的界面,则可以覆盖默认的提示行为。
你可以做什么,但我不建议:
window.prompt = function(text, defaultText){ return defaultText; }
这样您将覆盖所有提示对话框。
答案 1 :(得分:0)
使用提示时,JavaScript执行会在此时停止。没有办法让它自动化。我没有理由这么做,因为你可以直接设置文字吗?