如何使该功能每个按钮只运行一次?如果点击“点击我”只有效一次,其他按钮也一样。
为了不放太多代码,我放了一个例子..:http:
//jsbin.com/apexod/2/edit
<input type="button" value="click me" onclick="hello('Jhon')"><br>
<input type="button" value="click me1" onclick="hello('Gerard')"><br>
<input type="button" value="click me2" onclick="hello('Kaoru')">
<script>
function hello(id){
alert("hello "+id);
}
</script>