1. 程式人生 > >JS_一些小方法總結

JS_一些小方法總結

inpu onclick事件 function 總結 body cli type nbsp 方法總結

1.js中onclick事件同時調用兩個方法


用分號隔開即可,比如
<input type="button" onclick="a();b();" value="ab"/>

<script>
function a(){
alert(1);
}
function b(){
alert(2);
}
</script>

JS_一些小方法總結