简体   繁体   中英

Using href attribute for button element

I need that use href="" attribute for button

like this <button href="link">click me</button> Instead of <a href="link">

that's wrong .

I think that I've to try this code

<button onClick="FN('MY Link For Example www.stackoverflow.com')" >click me</button>

<script>
function FN('URL'){
     --> Go to MY Link For Example www.stackoverflow.com
}
<script>

So what do u guys suggest I should do ?

Try this. This will navigate to the link on click.

 <button onclick="window.location.href='http://www.stackoverflow.com'">click me</button>

Why you don't use <a type="button" href=""></a>

Or if you really want a button, so <button onclick="window.location.href=""></button>

I think this will solve your problem

<a href="http://www.stackoverflow.com/">
    <button>click me</button>
</a>

href attribute can not be used on button tag , if you want button like appearance for your a tag you can use add style to your a tag and make it look like button , add bootstrap reference then add button class to your anchor tag. Custom Bootstrap Button , but if you still want to use button tag then adding onclick event is better option

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM