you can print out the value of the checkbox, and the input box can not get the value
<form action="" id="iform">
<label><input type="radio" name="testradio" id="" value=""></label>
<label><input type="radio" name="testradio" id="" value="FKP">FKP</label>
<label><input type="radio" name="testradio" id="" value=""></label>
<input type="text" class="sub" placeholder="" class="getRadio">
</form>
<script>
$(function(){
$("-sharpiform label").click(function(){
var str = $("-sharpiform input:radio:checked").val();
$(".getRadio").val() = str;
})
})
</script>