前台用了图片按钮,但是每次点击后页面都要刷新一次,怎么使得点击图片按钮时候不刷新页面呢?
thx!
------解决方案--------------------------------------------------------
onclick= "cruise(this);return false; "
------解决方案--------------------------------------------------------
或者 onclick= "return cruise(this); "然后在cruise 中return false
------解决方案--------------------------------------------------------
<input onclick= "cruise(this);return false " id= "play " style= "Z-INDEX: 110; LEFT: 64px; POSITION: absolute; TOP: 112px " type= "image " alt= "播放 " src= "img/play.gif " name= "tilt_play ">  
如果还提交,说明你 cruise 里有错误