发布网友 发布时间:2022-04-21 08:07
共2个回答
热心网友 时间:2023-11-07 16:00
这样:
<html>
<head>
<meta charset="UTF-8">
<title>Document</title>
<script type="text/javascript">
function fun()
{
for (i=0; i<5; i++)
{
document.write("Hello World<br>");
}
}
</script>
</head>
<body>
<form action="">
<input type="submit" value="按钮" onclick="fun()"/>
</form>
</body>
</html>
热心网友 时间:2023-11-07 16:01
JS ALERT 五次。onclick追问程序是怎样的,可以帮忙写一下吗?因为刚开始学,不太懂,谢谢啦