当前位置:编程学习 > JAVA >>

在Javascript中onclick()方法应用

<html>
<head>
<script type="text/javascript">

function onclick1(){
alert("Click button");
}
</script>
</head>

<body >
<input type="button" onClick="onclick1()" value="button"/>
</body>
</html>
当代码如下:

<html>
<head>
<script type="text/javascript">

function onclick(){
alert("Click button");
}
</script>
</head>

<body >
<input type="button" onClick="onclick()" value="button"/>
</body>
</html>

方法名字onclick()时候会不弹出对话框信息。

补充:web前端 , JavaScript ,
CopyRight © 2022 站长资源库 编程知识问答 zzzyk.com All Rights Reserved
部分文章来自网络,