访问另一个域上的IFrame页面

时间:2018-01-23 09:07:26

标签: javascript iframe cross-domain

有一份登记表。

它通过另一个域上的IFrame工作,需要再按一个按钮发送另一个值。 当我得到IFrame时可以让脚本工作吗?还是另一种选择?

HTML

<div style="border: 0px solid rgb(201, 0, 1); overflow: hidden; margin: 0px auto; 
   width: 100%; max-width: 2000px; max-height:2500px;">
<iframe class="embed-responsive-item" scrolling="no" src="https://www.angola-mmm.net/registration/" allowfullscreen="" frameborder="0">
</iframe>

JavaScript的:

<script>
  $(document).ready(function(){ $("button").click(function(){ 
       $('input[name=invite]').val("test25"); }); 
  }); 
</script>

CSS

<style> 
  .frame { position:absolute; } 
  iframe { margin-left: -300px; width: 1900px; height: 2000px; margin-top: -100px; } 
</style>

0 个答案:

没有答案