开发者

how to open jquery popup window through header redirect using php?

开发者 https://www.devze.com 2023-03-04 14:03 出处:网络
I\'m using jquery for popup window. This pop-up window will contain 2 file uploading and other text input tag and finally Submit button.Now If user upload a file from the 1st file upload the action is

I'm using jquery for popup window. This pop-up window will contain 2 file uploading and other text input tag and finally Submit button.Now If user upload a file from the 1st file upload the action is send to upload.php file then redirects to this page, but the pop is closed.So i want the pop-window to be open after the uploaded file is redirected to this page.So that 2nd file开发者_如何转开发 upload is done and so on till the final Submit button is pressed.

I want the popup-window to be open when file is redirected to that page.

Regards Sid


You could submit your file to an iframe, so page isn't 'refreshed' and your poup will remain opened.

<form .. target="myIframe">
  ...
</form>

<iframe id="myIframe" name="myIframe" src="about:blank"></iframe>

Hope this

0

精彩评论

暂无评论...
验证码 换一张
取 消