jquery-ui – 使用jQuery选择iframe中的表单

前端之家收集整理的这篇文章主要介绍了jquery-ui – 使用jQuery选择iframe中的表单前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我在iframe中有一个表单,它位于jQuery UI对话框中.表单包含文件输入类型. jQuery UI对话框包含一个Upload按钮.单击此按钮时,我想以编程方式调用submit方法.我的问题是如何使用jQuery选择iframe中的表单.以下代码应阐明图片
<div id="upload_file_picker_dlg" title="Upload file">        
    <iframe id="upload_file_iframe" src="/frame_src_url" frameborder=0 width=100% scrolling=no></iframe>
</div>

frame_src_url包含:

<form action="/UploadTaxTable" enctype="multipart/form-data" method="post" id="upload-form">            
<p>Select a file to be uploaded:</p>
<p>
    <input type="file" name="datafile" size="60">
</p>

jQueryUI对话框的javascript代码

$('#upload_file_picker_dlg').dialog({
    ...
    buttons: {
        'Close': function() { 
            $(this).dialog('close'); 
        },'Upload': function() {              
            $('#upload-form').submit(); //question is related to this line
            $(this).dialog('close'); 
        }
    },....
});

从上面的javascript代码段中,如何选择ID为upload_file_iframe的iframe上的表单?

解决方法

访问iframe中的元素很棘手.
您应该使用以下语法:
$('#iframeID').contents().find('#upload-form').submit();

其中’iframeID’显然是您为iframe提供的ID.

希望它是正确的!

原文链接:https://www.f2er.com/jquery/181224.html

猜你在找的jQuery相关文章