gpt4 book ai didi

html - 按钮不会在 Firefox 或 IE 中点击

转载 作者:太空宇宙 更新时间:2023-11-04 00:16:37 25 4
gpt4 key购买 nike

我使用 HTML/CSS 和 Java 脚本创建了一个按钮。该按钮应该将某人引导到不同的页面,但它不起作用。它在 Chrome 和 Safari 中运行良好,但在 Firefox 中不起作用。

任何人都可以帮助编写代码以使其在 Firefox 和 IE 中运行吗?

谢谢。

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

<html>

<head>
<title>WTF</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
</head>

<style type="text/css">


button{
color:#08233e;
font:2.4em Futura, ‘Century Gothic’, AppleGothic, sans-serif;
font-size:70%;
padding:14px;
background:url(overlay.png) repeat-x center #ffcc00;
background-color:rgba(255,204,0,1);
border:1px solid #ffcc00;
-moz-border-radius:10px;
-webkit-border-radius:10px;
border-radius:10px;
border-bottom:1px solid #9f9f9f;
-moz-box-shadow:inset 0 1px 0 rgba(255,255,255,0.5);
-webkit-box-shadow:inset 0 1px 0 rgba(255,255,255,0.5);
box-shadow:inset 0 1px 0 rgba(255,255,255,0.5);
cursor:pointer;
}

button:hover{background-color:rgba(255,204,0,0.8);}

</style>

<body>

<button><a href="http://www.ihatelebronjames.com" class="button1">LEBRON IS A NO-GOOD, BACK-STABBING, AFRAID-OF-THE-MOMENT CHOKE ARTIST!</a></button><br>
<button><a href="http://www.lebronjames.com" class="button2">LEBRON IS THE PINNACE OF BASKETBALL PERFECTION!</a></button>


</body>

</html>

最佳答案

一个非常简单的解决方法是:

<a href="http://www.lebronjames.com" class="button2"><button>LEBRON IS THE PINNACE OF BASKETBALL PERFECTION!</button></a>  

将按钮标签放在a标签内

另一个(更好的做法)选项:

http://jsfiddle.net/a6seL/

这里我们只是添加一个类“button2”到<a> .然后,我们像您对 <button> 所做的那样设置它的样式, 但为了真正获得按钮外观,我们还添加了 display : block上课。

现在你只需要 <a>没有更多<button> .

查看我的 jsfiddle。

关于html - 按钮不会在 Firefox 或 IE 中点击,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11040058/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com