我尝试根据复选框的状态向不同位置提交多个表单。一个javascript应该检查复选框并提交表单,但我无法让它工作。
<script type="text/javascript" charset="utf-8">
function checkSubmit() {
var frm1 = document.getElementById("optin1");
var frm2 = document.getElementById("optin2");
var frm3 = document.getElementById("optin3");
var chkbox1 = document.getElementById("c1");
var chkbox2 = document.getElementById("c2");
var chkbox3 = document.getElementById("c3");
if (chkbox1.checked === true) {
frm1.submit();
}
else // it is not checked, dont submit form
{
return false;
}
if (chkbox2.checked === true) {
frm2.submit();
}
else // it is not checked, dont submit form
{
return false;
}
if (chkbox3.checked === true) {
frm3.submit();
}
else // it is not checked, dont submit form
{
return false;
}
setTimeout(function() {
window.location = 'http://url.com/index.php';
}, 1350);
}
</script>
这里的html形式:
<form id="optin1" name="f1" method="post" action="file1.php" target="iframe1">
<input type="checkbox" id="c1" name="cc" value="" checked="checked">
<label for="c1"><span></span><strong>YES, I'd love to join!</strong></label>
<input name="email" type="hidden" value="<?=$_GET[email];?>"></form>
<form id="optin2" name="f2" method="post" action="file2.php" target="iframe2">
<input type="checkbox" id="c2" name="cc" value="" checked="checked">
<label for="c2"><span></span><strong>YES, I'd love to join!</strong></label>
<input name="email" type="hidden" value="<?=$_GET[email];?>">
<input name="name" type="hidden" value="Newsletter"></form>
<form id="optin3" name="f3" method="post" action="http://www.url.com" target="iframe3">
<input type="checkbox" id="c3" name="cc" value="" checked="checked">
<label for="c3"><span></span><strong>YES, I"d love to join!</strong></label>
<input id="txtEmail1" class="field" name="txtEmail1" value="<?=$_GET[email];?>" type="hidden">
<input type="hidden" value="18" name="webID">
<input type="hidden" value="20" name="usd">
<input type="hidden" value="25" name="lsvalue">
<input type="hidden" value="http://url.com/thanks" name="thanxurl">
<input type="hidden" value="http://url.com/confirm" name="confirmationurl"></form>
<form name="Submit">
<input name="btn1" type="image" onClick="checkSubmit()" src="images.jpg" align="left" />
</form>
<iframe name="iframe1" style="display:none"></iframe>
<iframe name="iframe2" style="display:none"></iframe>
<iframe name="iframe3" style="display:none"></iframe>
提交表单时,只提交第一个表单。怎么了?
答案 0 :(得分:1)
简单地返回false
而不是阻止在JavaScript中提交表单的方式。这只是为什么我永远不会告诉人们在没有理解 JS事件如何工作的情况下使用jQuery的原因之一。一个非常好的网站,关于JS事件的阅读是很好的'ol quirksmode。
当您编写的jQuery处理程序返回false时,事件将暂停,和不会再冒泡或传播。当你在本机JS中返回false时,事件仍会传播,在这种情况下,它的默认行为是提交表单。
查看有关quirksmode的一些文章以获取完整说明,但是现在,将return false
替换为:
var e = arguments[0] || window.event;//quirksmode will tell you what this means
//instead of return false:
if (e.preventDefault)
{
e.preventDefault();//clue is in the method's name
e.stopPropagation();
}
e.returnValue = false;//this is for IE<9
e.cancleBubble = true;
return false;
正如您所看到的,您需要做一些事情来阻止表单提交。当然,经常说开发人员必须“聪明地懒惰”,所以我经常扩充Event.prototype
并添加X浏览器方法来执行此操作。 I've added that code here,这是公认的答案。
更新
在查看你的小提琴之后,我在 chromium 上测试后forked it,我发现它有效。
如果您只将所有复选框包装到一个表单中,并且只提交该表单,我觉得好像会更好:未选中的复选框不会发送到服务器。它仍然是最安全的方式:有些人仍然禁用JS
更重要的是,您的HTML看起来好像是一个简报,即通过邮件发送:请注意您不能在电子邮件中使用JavaScript。此外,你(不小心)粘贴了一行php代码:
<? if ($_GET[email]) { ?>
您使用的是短标签,也许您已经知道这一点,但短标签已弃用,并且会在不久的将来删除,您可以使用的唯一标签是 完整标签<?php
标记和短回显标记:<?=
。
无论如何,在你的情况下,我会按照以下方式编写我的HTML:
<form method='POST' action='someScript.php'>
<h3>George Hamilton: IM Newsletter for Professionals (AWEBER)</h3>
<p>
<a href="http://getfirefox.com/"><img src="images/man1.jpg" width="100" height="121" alt="" class="float-left" /></a>
Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Donec libero. Suspendisse bibendum. Cras id urna. Morbi tincidunt, orci ac convallis aliquam,...
</p>
<p>
<input type="checkbox" id="c1" name="cc" value="" checked="checked">
<label for="c1">
<span></span><strong>YES, I'd love to join!</strong>
</label>
<input name="email" type="hidden" value="<?=$_GET[email];?>">
</p>
<h3>Another checkbox</h3>
<p>
<a href="http://getfirefox.com/"><img src="images/man1.jpg" width="100" height="121" alt="" class="float-left" /></a>
Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Donec libero. Suspendisse bibendum. Cras id urna. Morbi tincidunt, orci ac convallis aliquam,...
</p>
<p>
<input type="checkbox" id="c2" name="cc2" value="" checked="checked">
<label for="c2">
<span></span><strong>YES, I'd love to join!</strong>
</label>
</p>
<!-- @the end of the checkboxes -->
<input type="submit" value="sumbit image" id="foobar"/>
</form>
在这种情况下,根本不需要JS验证脚本。所有已选中的复选框 将被发送到服务器。您必须确保他们的名称属性是唯一的,但是......这种方法有两个主要好处:您不必为每个复选框包含一个隐藏的电子邮件字段(一个就足够了,因为我们只有一个表单),正如我之前所说,你不必依赖JS来提交表格。
答案 1 :(得分:0)
主要问题是您的else
条件。如果未选中第一个复选框,则为return false
,它将立即退出该函数并导致其他if
语句完全不执行。
您需要修改代码,以便只检查复选框的 none 时才return
(或者只是总是在if
个语句后返回,它可能是没关系)。
答案 2 :(得分:0)
您的javascript函数应如下所示:
function checkSubmit() {
var frm1 = document.getElementById("optin1");
var frm2 = document.getElementById("optin2");
var frm3 = document.getElementById("optin3");
var chkbox1 = document.getElementById("c1");
var chkbox2 = document.getElementById("c2");
var chkbox3 = document.getElementById("c3");
if (chkbox1.checked === true) {
frm1.submit();
}
else if (chkbox2.checked === true) {
frm2.submit();
}
else if (chkbox3.checked === true) {
frm3.submit();
}
else {
return false;
}
setTimeout(function() {
window.location = 'http://url.com/index.php';
}, 1350);
}
}
答案 3 :(得分:0)
尝试在Chrome / Firefox中执行网址并从firebug进行调试。