找開global.js, 找到以下函數:

function addFocusHandlers(elements) {
??? for (i=0; i < elements.length; i++) {
??????? if (elements[i].type != "button" && elements[i].type != "submit" &&
??????????? elements[i].type != "reset" && elements[i].type != "checkbox" && elements[i].type != "radio") {
??????????? if (!elements[i].getAttribute('readonly') && !elements[i].getAttribute('disabled')) {
??????????????? elements[i].onfocus=function() {this.style.backgroundColor='#ffd';this.select()};
??????????????? elements[i].onmouseover=function() {this.style.backgroundColor='#ffd'};
??????????????? // elements[i].onblur=function() {this.style.backgroundColor='';} 就是這一句話使jsp(html)中的onblur事件不能觸發
??????????????? elements[i].onmouseout=function() {this.style.backgroundColor='';}
??????????? }
??????? }
??? }
}
將其屏蔽掉即可。我還沒有發現屏蔽后對系統會有什么樣的影響。