发布网友 发布时间:2022-04-23 08:52
共4个回答
热心网友 时间:2022-04-21 01:09
代码如下:
<html>
<head>
<title>HTML网页打开后跳出来一个对话框,需要点确定</title>
</head>
<body onload="javascript:window.alert('确定吗?')">
</body>
<html>
如果要把提示分为两行居中显示代码如下:
<head>
<script language="javascript">
alert("弹出提示上\n弹出提示下")
</script>
</head>
热心网友 时间:2022-04-21 02:27
<html>
<head>
<title>HTML网页打开后跳出来一个对话框,需要点确定</title>
</head>
<body onload="javascript:window.alert('确定吗?')">
</body>
<html
热心网友 时间:2022-04-21 04:02
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title></title>
</head>
<body>
<!-- 下边这个input中的是当鼠标点击这个按钮才会弹出这个对话框 -->
<input value="点击这个会出现一个弹框" onclick="alert('看,出现了吧~')"/>
</body>
<script type="text/javascript">
// 下边这个是当网页一打开就会弹出这个对话框
alert('hello,word!')
</script>
</html>
热心网友 时间:2022-04-21 05:53
<head>
<script language="javascript">
alert("弹出提示")
</script>
</head>追问如果我要把提示分为两行,都居中显示怎么设置呢!
追答
alert("弹出提示上\n弹出提示下")