function show(e){
var ev = e || window.event;
//非IE
if (ev.stopPropagation) {
ev.stopPropagation();
}
//IE
else if (window.event) {
window.event.cancelBubble = true;
}
}
function show(e){
var ev = e || window.event;
//非IE
if (ev.stopPropagation) {
ev.stopPropagation();
}
//IE
else if (window.event) {
window.event.cancelBubble = true;
}
}
相关课程