周未拉,又问一个问题,怎么追加函数?
比如说有这么一个触发函数
button.onclick = function() {
alert('Loading');
// ...等等函数
LoadPage('left.html');
}
怎么追加其它事件呢?
我想
button.onclick后能执行原先的代码,
最后还要执行其它代码如:
alert('success');
有一个前提,是不能改动原先的函数代码,只能追加。
也就是说怎么扩展事件?
------解决方案--------------------
<script>
var A = function(){
alert('A');
}
var B=function(){
alert('B');
}
B.call(new A());
</script>