函数导航() { document.getElementById
我在尝试弄清楚如何将自定义代码添加到 URL 时遇到问题,单击该 URL 时,它会在页面上重新加载 iframe。我只能访问 URL。
iframe ID = gfgFrame
function navigate() { document.getElementById("gfgFrame").src = "/ClientCommunity/s/all-products?fileInfo=abcXyz";}
URL:javascript:navigate()
如何将上述内容直接添加到 URL 而不是使用 javascript:navigate() ?
I am having an issue trying to figure out how to add custom code to a URL that when clicked, it reloads an iframe on the page. I only have access to the URL.
iframe ID = gfgFrame
function navigate() { document.getElementById("gfgFrame").src = "/ClientCommunity/s/all-products?fileInfo=abcXyz";}
URL: javascript:navigate()
How can I add the above directly to the URL instead of using the javascript:navigate() ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
以下代码行有效:
The following code line works:
如果您的 iframe 有
name
属性,您只需使用target="theIframesName"
制作锚点即可If your iframe has a
name
attribute you can just make an anchor withtarget="theIframesName"