$(function() {
$(‘#send‘).click(function() {
$.ajax({
type: "GET", //GET或POST,
async:true, //默认设置为true,所有请求均为异步请求。
url: "http://www.idaima.com/xxxxx.php",
data: {
username: $("#username").val(),
content: $("#content").val()
},
dataType: "json", //xml、html、script、jsonp、text
beforeSend:function(){},
complete:function(){},
success: function(data) {
alert(data)
},
error:function(){},
});
});
});
$("input[type=‘checkbox‘]").is(‘:checked‘)
//返回结果:选中=true,未选中=false
var chk_value =[];
$(‘input[name="test"]:checked‘).each(function(){
chk_value.push($(this).val());
});
$("document").ready(function() {
$("#btn1").click(function() {
$("[name=‘checkbox‘]").attr("checked", ‘true‘); //全选
}) $("#btn2").click(function() {
$("[name=‘checkbox‘]").removeAttr("checked"); //取消全选
}) $("#btn3").click(function() {
$("[name=‘checkbox‘]:even").attr("checked", ‘true‘); //选中所有奇数
}) $("#btn4").click(function() {
$("[name=‘checkbox‘]").each(function() { //反选
if ($(this).attr("checked")) {
$(this).removeAttr("checked");
} else {
$(this).attr("checked", ‘true‘);
}
})
})
})
直接val就行了
$("#select").val()
$(‘input:radio:checked‘).val();
$("input[type=‘radio‘]:checked").val();
$("input[name=‘rd‘]:checked").val();
(7)设置第一个Radio为选中值:
$(‘input:radio:first‘).attr(‘checked‘, ‘checked‘);
或者:
$(‘input:radio:last‘).attr(‘checked‘, ‘checked‘);
或者:
$(‘input:radio:last‘).attr(‘checked‘, ‘true‘);
原文:https://www.cnblogs.com/w-yue/p/11888396.html