我想从这个网址获取并IFRAME打印哈希
http://www.mywebsite.com/#/aaaaaaaa
AAAAAAAA
获得哈希并添加iframe中:
<iframe src="http://www.example.com/url/aaaaaaaa" frameborder="0">
Javascript代码:
<script>
var hhash = window.location.hash.substr(1);
alert(hhash);
</script>
还有呢?你已有的代码有什么问题?即你的问题是什么?另外,您想要将散列添加到iframe,或者更确切地说,添加到iframe的src中? – Teemu
是的,@Teemu我想要在iframe中自动打印“aaaaaaaa”与javascript – ericdrey
https://stackoverflow.com/questions/24603580/how-can-i-access-the-dom-elements-within-an-iframe虽然,它看起来像你滥用'location.hash',也许你应该使用查询字符串呢? – Teemu