How do you post to an iframe?

前端 未结 4 2117
慢半拍i
慢半拍i 2020-11-22 00:55

How do you post data to an iframe?

4条回答
  •  野趣味
    野趣味 (楼主)
    2020-11-22 01:08

    An iframe is used to embed another document inside a html page.

    If the form is to be submitted to an iframe within the form page, then it can be easily acheived using the target attribute of the tag.

    Set the target attribute of the form to the name of the iframe tag.


    Advanced iframe target use
    This property can also be used to produce an ajax like experience, especially in cases like file upload, in which case where it becomes mandatory to submit the form, in order to upload the files

    The iframe can be set to a width and height of 0, and the form can be submitted with the target set to the iframe, and a loading dialog opened before submitting the form. So, it mocks a ajax control as the control still remains on the input form jsp, with the loading dialog open.

    Exmaple

    
    
    

    Loading Details...

提交回复
热议问题