你的json格式是一個(gè)數(shù)組。
成都創(chuàng)新互聯(lián)專注為客戶提供全方位的互聯(lián)網(wǎng)綜合服務(wù),包含不限于成都網(wǎng)站設(shè)計(jì)、成都網(wǎng)站建設(shè)、枝江網(wǎng)絡(luò)推廣、微信小程序開發(fā)、枝江網(wǎng)絡(luò)營銷、枝江企業(yè)策劃、枝江品牌公關(guān)、搜索引擎seo、人物專訪、企業(yè)宣傳片、企業(yè)代運(yùn)營等,從售前售中售后,我們都將竭誠為您服務(wù),您的肯定,是我們最大的嘉獎(jiǎng);成都創(chuàng)新互聯(lián)為所有大學(xué)生創(chuàng)業(yè)者提供枝江建站搭建服務(wù),24小時(shí)服務(wù)熱線:18980820575,官方網(wǎng)址:www.cdcxhl.com
數(shù)組中又包含一個(gè)對象(對象的屬性分別為cities,name,universities,userses),所以如果想得到universities的數(shù)據(jù),只需data[0].universities即可。
另外,universities又是一個(gè)數(shù)組,數(shù)組中包含兩個(gè)對象,兩個(gè)對象的屬性分比為id,name,province,useruniversities
jquery中parent()可以獲取父級元素,所以獲得某元素父級的父級可以使用
1
$(selector).parent().parent();
示例如下
創(chuàng)建Html代碼及css樣式
1
2
3
4
5
6
7
8
9
div class="class1"
class1
div class="class2"
class2
div class="class3"
class3
/div
/div
/div
1
2
div{padding:10px 20px;border:4px solid #ebcbbe;}
div.class1{width:200px;height:120px;}
編寫jquery代碼
1
2
3
4
5
6
$(function(){
$("div.class3").click(function() {
obj = $(this).parent().parent();
alert(obj.prop('class'));
});
})
查看效果
用這個(gè)就行選擇input的type是checkbox的 $(":checkbox").prop("checked","true")
或者你給需要全選的復(fù)選框加一個(gè)一樣的name
$("[name = 'chkItem']:checkbox").attr("checked", true);