回复 1楼noahark的帖子
在event.cancel = true后,CallBackStopped就不会调用了、也不会回传给服务器了。
- <script>
- function CallBackStart(event) {
- if (event == null) event = window.event;
- event.cancel = true; //关键代码!!!
- alert("start");
- }
- function CallBackStopped() {
- alert("stop");
- }
- </script>
复制代码
|
|