Selecting a form which is in an iframe using jQuery

前端 未结 3 475
不思量自难忘°
不思量自难忘° 2020-12-11 04:59

I have a form inside an iframe which is inside a jQuery UI dialog box. The form contains a file input type. The jQuery UI dialog contains an Upload button. When this butt

3条回答
  •  执笔经年
    2020-12-11 05:53

    Accessing an element inside an iframe is tricky. You should use the following syntax:

    $('#iframeID').contents().find('#upload-form').submit();
    

    where 'iframeID' is obviously an ID you've given to the iframe.

    Hope it is correct!

提交回复
热议问题