HTML 到 JAVASCRIPT 的转换?
<script language="javascript" type="text/javascript">
if (window!= top)
<a href="#" target="_parent">Go to Top Window</a>;
</script>
我试图让上面的代码工作,但“a href”(HTML)在javascript中不起作用。任何人都可以传播一些关于如何使这个 url 成为 javascript 的一部分的见解吗?由于目标属性和“#”,我确实需要使用 href。这似乎是不可能的..但是如果您对如何解决这个问题有任何想法,请告诉我。
<script language="javascript" type="text/javascript">
if (window!= top)
<a href="#" target="_parent">Go to Top Window</a>;
</script>
I'm trying to get the above code to work but "a href" (HTML) does not work in javascript. Can anyone spread some insight on how I can make this url be a part of the javascript? And I do need to use href because of that target attribute and the "#". This seems impossible.. but please let me know if you have any ideas on how to approach this.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
不是一个明确的问题,但你需要类似的问题,
Not a clear question but you need something like,
感谢您添加的评论,我认为您正在寻找
Thanks to the comment you added, I think you're looking for
“谷歌”突破了框架。这是 javascript 的链接: http://www.thesitewizard.com/archive/framebreak.shtml
"Google" break out of frames. here's a link for javascript: http://www.thesitewizard.com/archive/framebreak.shtml
在您的文档中,为该锚点指定一个唯一的 ID
Go to Top Window
,然后在 JavaScript 中:In your document, give that anchor a unique id
<a id="hideThisAnchorWhenNotInAFrameset" href="#" target="_parent">Go to Top Window</a>
, then in your JavaScript: