html网页中,如何让警告框弹出延时?
发布网友
发布时间:2022-05-04 16:42
我来回答
共2个回答
热心网友
时间:2022-04-23 19:55
<input TYPE="button" VALUE="弹出警告框" ONCLICK="AlertButton()">
<script language="JavaScript">
<!--
function AlertButton(){
window.setTimeout("window.alert('今天你喝了没有?:)')",2000);
}
// -->
</script>
或者
<input TYPE="button" VALUE="弹出警告框" ONCLICK="window.setTimeout('AlertButton()',2000)">
<script language="JavaScript">
<!--
function AlertButton(){
window.alert("今天你喝了没有?:)");
}
// -->
</script>
热心网友
时间:2022-04-23 21:13
<input
TYPE="button"
VALUE="弹出警告框"
ONCLICK="AlertButton()">
<script
language="JavaScript">
<!--
function
AlertButton(){
window.setTimeout("window.alert('今天你喝了没有?:)')",2000);
}
//
-->
</script>
或者
<input
TYPE="button"
VALUE="弹出警告框"
ONCLICK="window.setTimeout('AlertButton()',2000)">
<script
language="JavaScript">
<!--
function
AlertButton(){
window.alert("今天你喝了没有?:)");
}
//
-->
</script>