<html>
<head>
<title> 确认对话框 </title>
</head>
<body>
<script>
function get_confirm()
{
var z = confirm("请问您是否确认要减肥了?");
}
</script>
<input type="button" onclick="get_confirm()" value="马上变瘦" />
</body>
</html>
<html>
<head>
<title> 确认对话框 </title>
</head>
<body>
<script>
function get_confirm()
{
var z = confirm("请问您是否确认要减肥了?");
}
</script>
<input type="button" onclick="get_confirm()" value="马上变瘦" />
</body>
</html>