1
1、获取的当前输入的代码长度
2、一个单选框,默认选中,再次点击不选。
js:
function cha(){ var curLength=$("#newmsg").val().length; $("#textCount1").text($("#newmsg").val().length); } $(function(){ var isChecked = true; $('#alt').click(function(){ if(isChecked){ $(this).removeAttr('checked'); }else{ $(this).attr('checked',true); } isChecked = !isChecked; }); });
html的代码:
1 <!--方法1对应的html--> 2 <div> 3 <b>字数:<span id="textCount1"/></b> 6 <textarea name="newtext" id="textMsg" cols="45" rows="4" onkeyup="cha();" /> 7 </div> 8 9 <!--方法2对应的html-->
10 <input type="hidden" name="alt" value="2" /> 11 <label> 12 <input name="alt" type="radio" value="1" id="alt" checked/> 13 <b>单选框</b> 14 </label> 15
java 中代码:
int alt= Integer.parseInt(request.getParameter("alt"));//获取是否选中,然后根据业务 做具体判断