html 问题 - 按钮超过锚点?
<button onclick="aprove(<?php echo $d["cod_team"]; ?>)">Aprove</button>
<button onclick="refuse(<?php echo $d["cod_team"] ?>)">Refuse</button>
1) 我们如何向 A 元素提供相同的指令?
2)有什么我应该注意的跨浏览器问题吗?
K.问候, MEM
<button onclick="aprove(<?php echo $d["cod_team"]; ?>)">Aprove</button>
<button onclick="refuse(<?php echo $d["cod_team"] ?>)">Refuse</button>
1) How can we give this same instructions to a A element?
2) Are there any cross-browser issues that I should be aware of?
K. Regards,
MEM
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
url 的
#
确保浏览器不会离开此页面,否则语义将保持不变。The
#
for the url guarantees that the browser won't leave this page, and otherwise the semantics would stay the same.另外:
而且,只是为了一笑:
如果你想要后备:
另外,还有其他方法可以计算。
顺便说一下,您在函数名称中拼写错误了approve。
Also:
And, just for grins:
And if you want a fallback:
Plus, there are other ways innumerate.
By the way, you misspelled approve in the function name.
同样的方式:
javascript:void(0) 部分阻止 href 的默认行为,从而阻止加载任何页面。
same way:
The javascript:void(0) part prevents the default behavior of the href thus preventing any page from loading.