单击单选按钮提交输入 [英] Radio Button On Click Submit Input

查看:107
本文介绍了单击单选按钮提交输入的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

当我选择打开"或关闭"单选按钮以提交输入id ="kot"时,我该怎么做?

How can i make when i chose a radio button On or Off to submit input id="kot" ?

    <label><input type="radio" onClick="*???*" name="shfaq<?php echo $i; ?>" value="1" id="radiobuttonsondazh_0" <?php if($result['live']==1) echo 'checked'; ?> />Po</label>     
    <label><input type="radio" onClick="*???*" name="shfaq<?php echo $i; ?>" value="0" id="radiobuttonsondazh_1" <?php if($result['live']==0) echo 'checked'; ?> />Jo</label>

    <input id="kot" name="soralivetitull" type="submit" value="Shfaq" style="margin-top:1em" onclick="setWTF(this.form.soralivetitull);" />

推荐答案

尝试如下:

<script type="text/javascript">
function submitform()
{
    document.forms["myform"].submit();
}
</script>

//give your form the id "myform"
<form id="myform" action="submit-form.php">
//and then call the function onCLick
<input type="radio" onClick="javascript: submitform()" ...

这篇关于单击单选按钮提交输入的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆