0

我在nettuts上使用本教程来构建联系表格。他们的联系表格在运行 10.6.8 的 mac 上运行良好,但在运行在 10.8.4 上的 mac 上运行不正常?我假设它可能与 PHP 版本有关,但我不确定如何修复他们的代码以使其变得更好,有人可以帮忙吗?我也在我的网站服务器上尝试过,但也没有任何乐趣。

谢谢,

4

1 回答 1

0

您可以使用带有 mailto: 标签的按钮来代替 php

.button {
  background-color: #ffa200;
  border: none;
  color: white;
  padding: 15px 410px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  margin: 4px 2px;
  cursor: pointer;
}

.button:hover
{
	background-color:#ff2f00;
}

a.a
{
	text-decoration: none;
}
h3.k
{
	color: white;
	font-weight: bold;
}
<center>
<button class="button">
<a class="a" href="mailto: name@example.com"><h3 class="k">SEND US A MESSAGE</h3></a>
</button>
</center>

此标签打开邮件应用程序并已显示它是谁

于 2019-12-01T17:00:13.590 回答