关于click事件添加方法
<!DOCTYPE HTML>
<html>
<head>
<meta http-equiv="Content-Type" content="texthtml; charset=utf-8">
<title>计时器</title>
</head>
<body>
<form>
<input type="text" id="clock" size="50" />
<input type="button" value="Stop" id="stop" />
</form>
</body>
<script type="text/javascript">
function clock(){
var time=new Date();
document.getElementById("clock").value = time;
}
var a = setInterval("clock()",100)
document.getElementById("stop").onclick=clearInterval(a);
</script>
<html>
如果在input元素内加上onclick="clearInterval(a)"是可以实现的。在script标签内只能写一个function,再onclick=function名,也可以实现。但是在script标签内怎么实现不写function,即onclick=function内容,能实现得了吗?