设置 href 链接目标而不重新加载页面
我有一个 href 标签 或更准确地说,从 Flash
loadURL('#somepage', 'sometarget') 加载 URL
。我无法删除目标,因此仅限于(我假设)可用目标:_top
、_self
、_blank
、_parent
。
我必须实现什么目标或替代方案才能避免刷新页面?
I have a href tag <a href="#somepage" target="sometarget">
or more accurately loading a URL from Flash loadURL('#somepage', 'sometarget')
. I have no option to remove the target so am limited to (I assume) the available targets: _top
, _self
, _blank
, _parent
.
What target or alternative do I have to avoid refreshing the page?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
target="_self" 是默认值。就等于根本没有目标。
target="_self" is the default. It is the same as having no target at all.