input.onblue=function(){
  a();
  b();
  this.onChange();
}
function a(){
}
function b(){
}
不知道这样的方法是否满足你的要求

解决方案 »

  1.   

    <input type="button" onClick="a();b();">
    这样可以吗?
      

  2.   

    http://www.pconline.com.cn/pcedu/empolder/wz/javascript/10301/126194.html
      

  3.   

    <input type="button" onClick="a();b();">
    <script>
    function a(){
    alert("aaa");
    }
    function b(){
    alert("bbb");
    }
    </script>
      

  4.   

    obj.attachEvent(event,function1)
    obj.attachEvent(event,function2)
      

  5.   

    楼上的方法好像可行,而且还可以这样用!
    obj.attachEvent(event,function1,fucntion2)