0

我对 HTML 知之甚少。几个小时以来,我一直在寻找和解决这个问题的答案。我正在尝试制作一个居中并链接到网站的 HTML 按钮。有人可以给我代码吗?谢谢你。

4

4 回答 4

1

将按钮代码放在中间<div align='center'>buttoncode</div>

于 2012-09-28T18:17:07.763 回答
0

制作居中并链接到网站的 HTML 按钮的最简单方法。

<center>
      <input type="button" value="Put Your Text Here" onClick="parent.location='http://www.google.com/'">
</center> 
于 2012-09-28T18:08:43.367 回答
-1
<head>
    <script type="text/javascript">
      function DoIt(){
      window.open ('http:somewhere.net','_self',false);
      }
    </script>
</head>

<body>
  <center>
    <button onclick="DoIt ()">Put Some Text Here</button>
  </center>
</body>
于 2012-09-28T18:16:40.560 回答
-1

将代码放在中间

<center>

</center>

为我工作!

于 2015-02-19T17:46:02.640 回答