7

我有一个 iframe,用于将文件上传到我的服务器。我想将我想要的文件名称传递给 iframe,但我无法做到。

我在 iframe 中得到了这个内容:

<html>
<body>
<form action="upload_file.php" method="post" enctype="multipart/form-data">
<input type="file" name="file" id="file"><br>
<input type="hidden" name="idProductoFormUpload" id="idProductoFormUpload"    value="test">    
<input type="submit" name="submit" value="Enviar">
</form>

iframe 元素的代码:

<iframe id="iframeUpload" name="iframeUpload" src="uploadForm.html" style="height:100px;"></iframe>

我要做的就是设置“idProductoFormUpload”输入的值。

我试过这个没有成功:

$('#iframeUpload').contents().find('#idProductoFormUpload').val('myValue');
4

1 回答 1

5

你的代码很好。我也经常遇到这个问题。确保将 javascript 放在 iframe 之后。

于 2013-05-30T00:01:09.313 回答