我有一个表单,其中有一些单选按钮不在此表单中.html如下
<input type="radio" id="radio1" name="radios" value="radio1" checked>
<label for="radio1">Credit Card</label>
<input type="radio" id="radio2" name="radios"value="radio2">
<label for="radio2">Debit Card</label>
<form method="post" action='./process.php'>
<label>name</label>
<input type="text"/>
<input type="submit" style="float:right" value="Pay Now"/>
</form>
当我按下paynow按钮时,我想将所选按钮的值传递给此表单的php(process.php)。但我不想将单选按钮放在表单中。是否有任何解决方案?
答案 0 :(得分:3)
你可以在表单中有一个隐藏值,onsubmit将该单选按钮的值放在隐藏值中
<input type="radio" name="test" value="a">a<br>
<input type="radio" name="test" value="b">b
<form>
<input type="hidden" name="test" id="hidden">
<submit onClick="transferData">
</form>
<script>
var transferData = function() {
var radioVal =$('input:radio[name=test]:checked').val()
$('#hidden').val(radioVal);
}
</script>
答案 1 :(得分:1)
HTML5支持名为“form”的属性。您可以使用它来设置表单外部控件的表单,如下所示:
<input type="radio" id="radio1" name="radios" value="radio1" checked>
<label form="myForm" for="radio1">Credit Card</label>
<input type="radio" id="radio2" name="radios"value="radio2">
<label form="myForm" for="radio2">Debit Card</label>
<form id="myForm" method="post" action='./process.php'>
<label>name</label>
<input type="text"/>
<input type="submit" style="float:right" value="Pay Now"/>
</form>
注意如何将id =“myForm”添加到表单中,并将form =“myForm”添加到单选按钮中。希望对你有所帮助。
答案 2 :(得分:0)
是的,您可以在</body>
之前添加对jQuery的引用。然后,使用JQuery,您可以选择选中的单选按钮,如下所示:
var selected = $("input[type='radio']:checked");
if (selected.length > 0) {
selectedVal = selected.val();
}
selectedVal参数将保存您想要的值。
选择单选按钮的选择应该在提交按钮的点击事件中完成。
可以这样做:
$("input[type='submit']").click(function(){
// code goes here.
});
答案 3 :(得分:0)
您的表单上必须有onsubmit
属性,并且在内部,将所选单选按钮值分配给隐藏字段。
像这样:
<form id='myForm' method="post" action='./process.php' onsubmit='getRadioButtonValue()'>
...
<input type="hidden" name="selectedRadioValue" />
</form>
function getRadioButtonValue(){
var radioValue = $('input[name=radios]:checked', '#myForm').val();
$('input[name='selectedRadioValue']').val(radioValue);
}
答案 4 :(得分:0)
将所有内容放入表格中。如果要发送所有值。在标签中添加必需的服装。
其他明智地使用jQuery
<form id="test" method="POST">
<input type="text" id="name" required minlength="5" name="name"/>
<input type="password" id="pw" required name="pw"/>
<input id ="sub" type="submit"/>
</form>
<ul id="answer"></ul>
</body>
<script>
$("#sub").click(function(event){
event.preventDefault();
query = $.post({
url : 'check_ajax.php',
data : {'name': $('input[name=name]').val(), 'pw': $('#pw').val()},
});
query.done(function(response){
$('#answer').html(response);
});
});
</script>
您需要做的就是将选项/输入的值添加到数据中的表单之外
答案 5 :(得分:-1)