WEB开发网
开发学院网页设计JavaScript Javascript中onclick()方法应用 阅读

Javascript中onclick()方法应用

 2012-10-16 12:33:09 来源:WEB开发网   
核心提示: <html><head><script type="text/javascript">function onclick1(){alert("Click button");}</script></head><bod

 <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()时候会不弹出对话框信息。

Tags:Javascript onclick 方法

编辑录入:爽爽 [复制链接] [打 印]
赞助商链接