jQuery获取选中内容及设置元素属性的方法教程
程序员文章站
2023-12-27 20:11:03
获取选中select :
$("#id option:selected").val();
自定义radio:
$("inpu...
获取选中select :
$("#id option:selected").val();
自定义radio:
$("input[name=sex][value="+data.sex+"]").attr("checked",true);
获取radio:
$("input[name='sex']:checked").val()
设置input不能编辑:
$("#cashnum").attr("disabled","disabled");