1阻止冒泡的函数

function stopPropagation(e) {

   e = e || window.event;

   if(e.stopPropagation) { //W3C阻止冒泡方法

       e.stopPropagation();

   } else {

       e.cancelBubble = true; //IE阻止冒泡方法

   }

某个方法里面调用,只执行该方法,而不执行他的祖先节点的事件方法

function open_time_set(obj){

    。。。。。

   stopPropagation(arguments[1]);

}

下面是关于argurment的描述

http://www.cnblogs.com/zhenmingliu/archive/2012/05/10/2493790.html