我添加了一个"联系我们"形成一个工作网站。
当我尝试它时,我注意到提交按钮无效。我从代码中删除了jquery CDN链接,之后,提交按钮开始工作,电子邮件现在发送顺利。
有人建议使用解决方案来保持jquery链接和提交按钮正常工作吗?
public static int[] toUnsignedIntArray(byte[] array) {
return IntStream.range(0, array.length)
.map(idx -> array[idx] & & 0xFF)
.toArray();
}
答案 0 :(得分:0)
我的猜测是这是一个拼写错误,看看你的代码:
<form action="" method="POST" id="myForm"> <fieldset> <input type="text" name="fullname" placeholder="Full Name" /> <br /> <input type="text" name="subject" placeholder="Subject" /> <br /> <input type="text" name="phone" placeholder="Phone" /> <br /> <input type="text" name="emailid" placeholder="Email" /> <br /> <textarea rows="4" cols="20" name="comments" placeholder="Comments"></textarea> <br /> <input type="button" name=" onclick="myFunction()" value="Submit form"> </fieldset> </form>
name="
之后有一个缺少的引号“
<input type="button" name=" onclick=" myFunction() " value="Submit form">
所以这是你的更正代码。
<form action="" method="POST" id="myForm">
<fieldset>
<input type="text" name="fullname" placeholder="Full Name" /> <br />
<input type="text" name="subject" placeholder="Subject" /> <br />
<input type="text" name="phone" placeholder="Phone" /> <br />
<input type="text" name="emailid" placeholder="Email" /> <br />
<textarea rows="4" cols="20" name="comments" placeholder="Comments"></textarea> <br />
<input type="button" name="" onclick=" myFunction() " value="Submit form"> </fieldset>
</form>
始终仔细检查您的代码,并处理干净格式的代码,它将帮助您捕获此类错误。