Fixed : exec_xml이 IE에서 정상적으로 동작하지 않던 버그 수정

git-svn-id: http://xe-core.googlecode.com/svn/sandbox@7379 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
taggon 2010-04-21 06:20:26 +00:00
parent a16caaed61
commit f9e9499398

View file

@ -307,11 +307,11 @@ function send_by_form(url, params) {
var form_id = 'xeVirtualForm';
if (!$('#'+frame_id).length) {
$('<iframe name="%id%" id="%id%" style="position:absolute;left:-1px;top:1px;width:1px;height:1px">'.replace(/%id%/g, frame_id)).appendTo(document.body);
$('<iframe name="%id%" id="%id%" style="position:absolute;left:-1px;top:1px;width:1px;height:1px"></iframe>'.replace(/%id%/g, frame_id)).appendTo(document.body);
}
$('#'+form_id).remove();
var form = $('<form id="%id%">'.replace(/%id%/g, form_id)).attr({
var form = $('<form id="%id%"></form>'.replace(/%id%/g, form_id)).attr({
'id' : form_id,
'method' : 'post',
'action' : url,