<html>
<head>
<title>clearInterval demo</title>
<script type="text/javascript">
function show(){
alert("每隔两秒显示一次");
}
var sh = setInterval(show,2000);
function clear(){
clearInterval(sh);
}
</script>
<body>
<a href="clear()">clear</a>
</body>
</html>