我有一个表单,我在其中获取了一个文本字段,并且在其中也称为 iframe,并且在该 iframe 中有一个用于Name
. 我想使用 JavaScript/jQuery 将其显示Name
到我的表单文本字段中。我的意思是,我在文本字段中输入了一些Name
内容,它将显示在我的输入字段中。
我正在从另一个域调用 iframe。我使用了以下代码
<script>
var iframe = document.getElementById('progressive');
var innerDoc = iframe.contentDocument || iframe.contentWindow.document;
var usernameTextBox = innerDoc.getElementById('ApplicantInfo1_FirstName');
usernameTextBox.focus();
</script>