admin管理员组文章数量:1345107
I know that some relevant questions exist but none of them really has an answer more than saying that it is not possible. What I would like to achieve is having a dropdown button inside of an anchor tag so that user can be redirected on click but also has a possibility to interact with the button itself since it is a multiple-choice dropdown. Right now, once the user clicks on the button, the anchor tag redirects the user without having any effect on the button.
Just to give you an idea of what the code looks like, here is the minimal reproduction:
<a href="some_location">
<span>Some text</span>
<div>
<button>My Dropdown button</button>
</div>
</a>
I know that some relevant questions exist but none of them really has an answer more than saying that it is not possible. What I would like to achieve is having a dropdown button inside of an anchor tag so that user can be redirected on click but also has a possibility to interact with the button itself since it is a multiple-choice dropdown. Right now, once the user clicks on the button, the anchor tag redirects the user without having any effect on the button.
Just to give you an idea of what the code looks like, here is the minimal reproduction:
<a href="some_location">
<span>Some text</span>
<div>
<button>My Dropdown button</button>
</div>
</a>
Share
Improve this question
edited Feb 1, 2021 at 9:46
Zaid Aly
1732 silver badges17 bronze badges
asked Feb 1, 2021 at 9:42
em_codeem_code
4381 gold badge7 silver badges20 bronze badges
2
- 1 HTML explicitly forbids nesting such interactive elements into each other. – C3roe Commented Feb 1, 2021 at 9:52
- What could be the solution to achieve the desired result then? – em_code Commented Feb 1, 2021 at 9:58
2 Answers
Reset to default 11i think it's can help you
const myComp = () => {
handelBtn = (e) => {
e.stopPropagation();
// OR
e.preventDefault();
}
return (
<a href="some_location">
<span>Some text</span>
<div>
<button onClick={handelBtn}>My Dropdown button</button>
</div>
</a>
)
}
I think this can help you.
It works with both <Link> Component and <a> tag. Here <a> tag will be wrapped around the div(card) and div will work as <a> tag when clicked. The button will be above the <a> tag and it is clickable.
const myComp = () => {
return (
<div class="card">
<a href="some_location"> </a>
<span>Some text</span>
<div>
<button>My Dropdown button</button>
</div>
</div>
)
.card {
position: relative;
}
.card > a {
position: absolute;
inset: 0;
}
.card button {
position: relative;
}
本文标签: javascriptHow to make a button inside of the anchor tag clickable in ReactStack Overflow
版权声明:本文标题:javascript - How to make a button inside of the anchor tag clickable in React? - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743766336a2535296.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论