如下:
<html>
<body>
<script>
function show_confirm()
{
var r = confirm("Press a button!");
if (r)
{
alert("yes");
}
else
{
alert("no");
}
}
</script>
<input type="button" οnclick="show_confirm()" value="test" />
</body>
</html>
靠谱。