mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-04-30 07:42:11 +09:00
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:
parent
a16caaed61
commit
f9e9499398
1 changed files with 2 additions and 2 deletions
|
|
@ -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,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue