我想在其他设置中将此代码集成到我的联系表单7中:
on_sent_ok: " if (document.getElementById("textArea1").value.trim() == '') {alert("no Message");}"
逻辑应该是这样的:
if textarea1 == " " alert message not to send the message else send the message
在我的代码中:当我试图放一些" "空格并发送一条消息:
"您的消息已成功发送" - 在警报弹出消息("没有消息")之后出现,然后检查我的电子邮件,发送了空白区域。我打算在有人试图发送空格时不发送一些空格。 我怎么能解决这个问题?如何过滤空白空间?
答案 0 :(得分:0)
使用jQuery
,您可以使用$.trim()
函数修剪空间。
if($.trim($("#textArea1").val()) == "")
{
alert(" message not to send the message");
}
else
{
alert("Message sent successfully");
}