如何使这个脚本工作

时间:2013-04-16 10:45:44

标签: javascript html5

请访问此page。我想在我的网站上放置一个链接到这个。 但是,我想要检查包含佣金复选框 默认情况下,当用户点击并转到该页面时。

任何想法我怎么能做到这一点?

enter image description here

更新 - 下面是我尝试的代码,但事件未发生我收到错误

<iframe id="forex"src="http://www.myfxbook.com/forex-broker-spreads" width="100%" height="100%" frameborder="0"> <p>Your browser does not support iframes.</p></iframe>


<script type="text/javascript">

    $(document).ready(function() { //want to trigger it from outside the iframe
        $("#forex").load(function(){
        $("#forex").contents().find("#includeCommission").trigger("click");
        });
      });

</script>

enter image description here

1 个答案:

答案 0 :(得分:0)

浏览器阻止了跨域访问。所以你不能访问属于另一个域的iframe中的元素。为此,父级和iframe源应位于同一个域中。Check here