function loadParentCat($dataurl){$.ajax({type:"post",url:$dataurl,dataType:"json",data:$.csrf({parentId:0}),success:function(msg){if(1==msg.status){var data=eval(msg.modelList),html="";for(var s in data)html=html+"";$("#deviceParentCat").html(html)}else alert("加载失败")},error:function(msg){alert("加载异常")}})}function loadDeviceCat($dataurl){var pid=$("#deviceParentCat").val();return""==pid?($("#deviceChildCat").html(""),!1):void $.ajax({type:"post",url:$dataurl,dataType:"json",data:$.csrf({parentId:pid}),success:function(msg){if(1==msg.status){var data=eval(msg.modelList),html="",cat_id=$("#hid_cat_id").val();for(var s in data)html=parseInt(cat_id)==parseInt(data[s].id)?html+"":html+"";$("#deviceChildCat").html(html)}else alert("加载失败")},error:function(msg){alert("加载异常")}})}