我只是在玩一些 HTML、PHP 和 JS 并遇到了问题。我的代码是:
<html>
<head>
<title> Dummy Code </title>
<script>
sendMail(){
<?php
$to = 'example@dot.com';
$subject = 'DummyCode.com';
$message = 'This is a text message sent from DummyCode.com';
$headers = 'From: example@dot.com' . "\r\n" .
'Reply-To: admin@dummycode.com' . "\r\n" .
mail($to, $subject, $message, $headers);
?>
}
</script>
</head>
<body>
<h1 align=center> DummyCode.com </h1>
<button type="button" onClick="sendMail()"> Send Mail! </button>
</body>
</html>
我的问题是当我单击按钮时我的 JS 不运行,它只在我重新加载页面时运行。
任何人?谢谢!