请访问此page。我想在我的网站上放置一个链接到这个。 但是,我想要检查包含佣金复选框 默认情况下,当用户点击并转到该页面时。
任何想法我怎么能做到这一点?
更新 - 下面是我尝试的代码,但事件未发生我收到错误
<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>