JQuery 권한 없 음

1191 단어 jqueryAjaxfunctionurl
페이지 새로 고침 시 권한 없 음 jquery - 1.4.2. min. js 오류
도 메 인 을 뛰 어 넘 는 문제 라 고 의심 합 니 다. 제 가 페이지 에서 먼저 ajax 로 배경 에 요청 을 한 다음 에 새로 고침 을 한 다음 에 location. href 를 미리 변수 로 저장 해서 해결 하 는 것 같 습 니 다.
코드 는 다음 과 같 습 니 다:
		var href=location.href;
		function exportDoc(){
			if(flag == 0) {
				//window.open("${URL}/event/event!export.action?kwid=${keyword.id}&btime="+$("#btime").val()+"&etime="+$("#etime").val());
				location.href="${URL}/event/event!export.action?kwid=${keyword.id}&btime="+$("#btime").val()+"&etime="+$("#etime").val();
	     	} else {
	     		var keywordId=${keyword.id}+"";
		     	$.post("${URL}/event/event!export.action",
		    		{kwid:keywordId,btime:$("#btime").val(),etime:$("#etime").val(),flag:flag},
		    		function(data, status){
		    			if(status == "success") {
		    				alert("      ");
		    				location.href=href;
		    			}
		    		}
		    	)
	     	}
		}

이것 은 참고 할 수 있다.http://tuzwu.iteye.com/blog/670245

좋은 웹페이지 즐겨찾기