措辞这个问题很难,但我走了。好的,我正在使用此站点的代码: http ://www.switchonthecode.com/tutorials/javascript-tutorial-getting-user-input-with-prompt-and-confirm
<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!" />
我什至尝试用动作替换答案的文本,但我什么也没得到。
我如何在答案中添加一个动作,所以当它是时,我做某事,当不是时我不做。