JSP 개발 상용 문제 해결
1、URL (tomcat utf-8, 、 、IE8/9 )
js:var url = encodeURI( URL);
action: String username=req.getParameterMap().get(key).toString();
req.setAttribute("username", username);
: ${username}
2、 iframe js : parent.
3、IE console , :
$.extend({
infoOptions:{isAllowInfo : true}, //
info:function(str, opts){
var options = $.extend($.infoOptions, opts);
if(options.isAllowInfo && typeof console != 'undefined'){
if(console.info){
console.info(str);
} else if(console.debug){
console.debug(str);
} else {
// , IE8
}
}
}
});
:$.info(' '), console , console
4、js top、parent , a.jsp iframe b.jsp,b.jsp iframe c.jsp
b.jsp top=parent ,c.jsp top=parent.parent
5、web , :IE console.log, js , $.log("ddd"); , eval , , js 。。
$.extend({
'log': function(msg, showtime){
if(window.console && window.console.log){
if(showtime){
console.log(' :' + new Date());
}
console.log(msg);
}
},
'doajax': function(p){
$.ajax($.extend({
type: 'post',
dataType: 'json'
},p));
},
'getTopWin':function(window){
if(window.parent == window){
return window;
}
if(window.parent._popwin && window.parent._popwin.istopwin){
return window.parent;
}else{
return getTopWin(window.parent);
}
},
'eval':function(expstr){
try{
return eval(expstr);
}catch(e){
return undefined;
}
}
})
6、CSS hack , Internet Explorer 6,Internet Explorer 7,Mozilla Firefox , CSS , , 。 CSS, , ( CSS )
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
Emacs에서 디폴트보다는 편하게 JSP를 쓰고 싶다.Emacs에서 JSP(JavaServer Pages)를 쓰게 되었지만 코드 성형 설정이 없었다. CentOS 6 GNU Emacs 23.1.1 STEP 1 의 다운로드에서 파일을 다운로드합니다. (나는 Github에...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.