js: Know a value in json data to get other values

js: Know a value in json data to get other values

var wtfl1economicsLengthData=data.questionOne //json数据
$(wtfl1economicsLengthData).each(function () {
    
    
			if(this.pid==20){
    
    //已知值进行判断
				var key = this.key;
                cosole.log(key);
			}  
});

Guess you like

Origin blog.csdn.net/qq_45844443/article/details/118379471