페이지 부분 새로 고침 의 두 가지 방식: form + iframe 과 ajax
4664 단어 AjaxJavaScriptMicrosoftDojoIE
1 form 을 사용 하여 제출 합 니 다. target 은 iframe 의 name 으로 설정 합 니 다.
인용 하 다.
2 ajax。 div ,
, ajax ,
document.getElementById("mapDiv").innerHTML =xmlhttp.responseText div 。
birt ajax :
http://www.roseindia.net/answers/viewanswers/1936.html
var xmlhttp = new getXMLObject();
function ajax () {
if(xmlhttp) {
//URL , xmlhttp send(params) ( )
//var url = "/preview?__report=rptfiles/tuition_map.rptdesign&startDate=${startDate}&endDate=${endDate}&province=" + encodeURIComponent(provinceName);
var url = "/preview";
var params = "__report=rptfiles/tuition_map.rptdesign&startDate=${startDate}&endDate=${endDate}&province=" + provinceName;
//alert(url);
//alert(params);
xmlhttp.open("POST",url,true);
xmlhttp.onreadystatechange = handleServerResponse;
xmlhttp.setRequestHeader('Content-Type', 'application/x-www-form-urlencoded;charset=UTF-8');
xmlhttp.send(params);
}
}
//XML OBJECT
function getXMLObject() {
var xmlHttp = false;
try {
xmlHttp = new ActiveXObject("Msxml2.XMLHTTP") // For Old Microsoft Browsers
}
catch (e) {
try {
xmlHttp = new ActiveXObject("Microsoft.XMLHTTP") // For Microsoft IE 6.0+
}
catch (e2) {
xmlHttp = false // No Browser accepts the XMLHTTP Object then false
}
}
if (!xmlHttp && typeof XMLHttpRequest != 'undefined') {
xmlHttp = new XMLHttpRequest(); //For Mozilla, Opera Browsers
}
return xmlHttp; // Mandatory Statement returning the ajax object created
}
function handleServerResponse() {
if (xmlhttp.readyState == 4) {
//if(xmlhttp.status == 200) {
//alert(xmlhttp.responseText);
document.getElementById("mapDiv").innerHTML =xmlhttp.responseText;
//}
// else {
// alert("Error during AJAX call. Please try again");
// }
}
}
Q & A:Div as Form Target,Possible?
Q:
인용 하 다.
Does anyone know how to target a . I want to put an HTML form
in a DIV. When it's submitted, the results should show up within that
same DIV. Possible?
A:
인용 하 다.
You can't target a div the way you can a frame;
you'd have to use AJAX techniques: have a button that triggers,
instead of a form submission, a call to a JavaScript function that
manually assembles and POSTs the same query that the browser would
assemble if you had really submitted the form, with a callback to a
JavaScript function that populates the div with the results. There
are JavaScript libraries that make this task easier (dojo, Yahoo!,
etc), but you still need to know how to program...
질문
다음 코드 를 사용 하여 birt 에 전 달 된 중국어 성 이름 province Name 은 항상 번 거 로 운 코드 입 니 다.var url = "/preview?__report=rptfiles/tuition_map.rptdesign&startDate=${startDate}&endDate=${endDate}&province=" + provinceName;
xmlhttp.open("POST",url,true);
xmlhttp.onreadystatechange = ;
xmlhttp.setRequestHeader('Content-Type', 'application/x-www-form-urlencoded;charset=UTF-8');
xmlhttp.send(null);
어떤 escape () encodeURI () encodeURIComponent () 를 사용 하여 url 의 중국어 provineName 을 전환 해도 문 제 를 해결 할 수 없습니다.
이후 XmlHttpRequest 의 send 방법 으로 바 꾸 어 이 난 장 판 문 제 를 해결 하 였 습 니 다.var url = "/preview";
var params = "__report=rptfiles/tuition_map.rptdesign&startDate=${startDate}&endDate=${endDate}&province=" + provinceName;
xmlhttp.open("POST",url,true);
xmlhttp.onreadystatechange = ;
xmlhttp.setRequestHeader('Content-Type', 'application/x-www-form-urlencoded;charset=UTF-8');
xmlhttp.send(params);
보아하니 얻 은 결론 은 다음 과 같다.
ajax 를 사용 하여 중국어 매개 변 수 를 전달 할 경우 url 에서 중국어 매개 변 수 를 추가 하지 말고 XmlHttpRequest. send (매개 변수 문자열) 를 사용 하여 참 조 를 전달 하면 매개 변수 문자열 의 중국 어 는 혼 란 스 럽 지 않 습 니 다.
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
원생 Ajax와 jQuery Ajax의 차이점 예시 분석
선언: 이번에 소개한 것은 aax와 백그라운드를 이용하여 데이터 교환을 하는 작은 예이기 때문에 demo는 서버를 통해 열어야 합니다.서버 환경은 구축하기 매우 좋다.
인터넷에서wamp나xampp를 다운로드하여 한 ...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.