admin管理员组文章数量:1351988
In the parent page I have an iframe like this:
<iframe src="facts.php" style="width:320px; height:500px; border:hidden" id="facts"> </iframe>
And inside of that iframe I have a jQuery function like this,
<script type="text/javascript">
$(document).ready(function(){
$('#demo').hide();
$('.vticker').easyTicker();
});
</script>
But this function doesn't trigger when the parent page is loaded. Can you please explain me how to solve this?
In the parent page I have an iframe like this:
<iframe src="facts.php" style="width:320px; height:500px; border:hidden" id="facts"> </iframe>
And inside of that iframe I have a jQuery function like this,
<script type="text/javascript">
$(document).ready(function(){
$('#demo').hide();
$('.vticker').easyTicker();
});
</script>
But this function doesn't trigger when the parent page is loaded. Can you please explain me how to solve this?
Share Improve this question edited Nov 19, 2013 at 5:50 user229044♦ 240k41 gold badges344 silver badges346 bronze badges asked Nov 19, 2013 at 0:34 IzuIzu 671 silver badge8 bronze badges 9- this will be fired when the iframe is loaded, why do you want it to be fired when the parent page is loaded – Arun P Johny Commented Nov 19, 2013 at 0:37
- Actually it doesn't tiger after the iframe is loaded as well. – Izu Commented Nov 19, 2013 at 0:39
- Do the #demo and .vticker elements you are trying to effect exist within the iframe or in the parent? (A script in an iframe can't see elements outside the frame.) – Lola Commented Nov 19, 2013 at 0:43
- Those are exist inside of the iframe. – Izu Commented Nov 19, 2013 at 0:46
- 1 Are you including your link to jquery in the inner frame? – Lola Commented Nov 19, 2013 at 0:50
3 Answers
Reset to default 4Try this inside your iframe.
<script type="text/javascript" src="js/Jquery.js"></script>
<script type="text/javascript">
$(document).ready(function(){
$('#demo').hide();
$('.vticker').easyTicker();
});
</script>
You are facing this issue because the parent JavaScript cannot access the events inside the iframe. You better include the script inside the source of the iframe.
This seems like cross side scripting to me. First of all try this in your iframe:
<script>
$(document).ready(function()
{
alert("iFrame is ready");
});
</script>
If this does not work, check if you includet jQuery the right way.
Remember: your iframe is a plete selfstanding webside. There is no munication between your main frame and your iframe. That means if you use Javascript in your iframe you can only manipulate HTML-code inside the iframe. If you want to manipulate HTML-elements outside of the iframe you need to include the Javascript in your main frame.
i was facing the same issue. i was using relative path to add jQuery file.
<script type="text/javascript" src="js/Jquery.js"></script>
by adding '/' it solved my issue.
<script type="text/javascript" src="/js/Jquery.js"></script>
本文标签: javascriptdocumentready function is not working inside an iframeStack Overflow
版权声明:本文标题:javascript - document.ready function is not working inside an iframe - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743905589a2559463.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论