http://www.web-via.com/NinaRose/club/
表单在普通的html页面上运行正常,但在wordpress中它给了我一个"请输入有效的电子邮件地址"错误。
<form action="mailto:maxp@businessrocket.net" enctype="text/plain" style="background-image:url('http://www.web-via.com/NinaRose/wp-content/uploads/2013/04/NinaBRozeClub.jpg') height:464px;" method="post">
<input type="text" name="email" style="background-color: white; height: 18px; left: 210px; position: relative; top: 318px; width: 187px;"/>
<input type="submit" value="Submit" style="height: 25px; left: 78px; opacity: 0; position: relative; top: 350px;"/>
</form>
我不确定是什么导致了冲突,无论是Wordpress还是代码所在的Popup Ninja插件,我也不知道如何解决问题。
非常感谢, 肯
答案 0 :(得分:1)
消息来自front.js的第82行。它正在尝试验证使用此代码找到的地址:
var email = pn("#popup_form #email").val();
预计您的电子邮件字段在ID为email
的其他元素中的某个地方的ID为popup_form
。尝试将id="popup_form"
添加到您的form
元素,将id="email"
添加到电子邮件字段。
或者更好的是,检查那些id
在您工作的HTML页面中的位置,并将它们放在WordPress页面中的相同元素上。