措辭這個問題很難,但我在這裏。好吧,我使用的代碼從該網站: http://www.switchonthecode.com/tutorials/javascript-tutorial-getting-user-input-with-prompt-and-confirmJavascript通過操作確認嗎?
<script type="text/javascript">
function confirmInput()
{
var ans = confirm("Install a virus and delete all your files?");
alert(ans ? document.getElementById('level').value = "0";
: "If no, do nothing");
}
</script>
<input type="button" onclick="confirmInput()" value="Show me the Question!" />
我甚至試過,以取代用行動回答的內容,但我什麼也得不到。
我如何爲答案添加一個動作,所以當它是肯定的時候,我做了一些事情,當沒有時我不做。
適用於我:http://jsfiddle.net/WTsMe/ – 2012-07-30 20:51:06
對不起,我只是更新了它...我很着急 – 2012-07-30 20:51:15
定義「不工作」。如果這就是你的意思,你不會從確認中返回價值。 – 2012-07-30 20:51:34