function contrastDiff(json){
json = new FashJson().deal(json);
$(json).each(function(index){
var color = "#c7def6";
var content = json[index];
var name = content.name.replace(/\./g,"\\.");
if($("#"+name).attr("name")){//表示普通的input field
//$("#"+name).css("background","blue");
$("th.contrast[field='"+name+"']").css("background",color);
$("th.contrast[field='"+name+"']").attr("title",formatContrast(content.value,content.type));

$(".contrast[field='"+name+"']").poshytip({alignY: 'top',alignX: 'right'});
}
有这么一段代码,第2行的代码是什么意思JSONjavascript