<script>
var fn = function(url){
// bla bla bla...
};
</script>
<input type="button" onclick="fn()" value="Execute">
<input type="button" onclick="???" value="Abort">
如上,当使用者按下“Execute”按钮时,“fn()”函数就会被执行。
假设fn()函数会执行很久,
如果使用者想在中途停止这个函数的执行(按“Abort”按钮),
请问我该怎么做?
如果说“fn()”函数有哪些的话,就像AJAX或其他可能要跑很久的程式
当然,除了AJAX之外还有可能是其他哩哩抠抠的函数。
不管,反正就是要强制让该函数停止的方法为何?