Does anyone know why this code doesn't work. This means, the alert is NOT fired
<iframe/>
<script type="text/javascript">alert('hello');</script>
While this code with the alert BEFORE the Iframe works perfeclty. This means the alert is fired
<script type="text/javascript">alert('hello');</script>开发者_开发百科;
<iframe/>
Seems that no javascript placed after the iframe is executed, I don't find any logic to this.
You need to close the <iframe>
tag like this:
<iframe></iframe>
<script type="text/javascript">alert('hello');</script>
精彩评论