html:
成都創(chuàng)新互聯(lián)公司-專業(yè)網(wǎng)站定制、快速模板網(wǎng)站建設、高性價比簡陽網(wǎng)站開發(fā)、企業(yè)建站全套包干低至880元,成熟完善的模板庫,直接使用。一站式簡陽網(wǎng)站制作公司更省心,省錢,快速模板網(wǎng)站建設找我們,業(yè)務覆蓋簡陽地區(qū)。費用合理售后完善,10多年實體公司更值得信賴。
生態(tài)系統(tǒng)類型* :
//ztree 與jquery 版本兼容
js:
jQuery(document).ready(function($) {
//點擊輸入框的 顯示下拉框
$(".form-control").click(function() {//alert( $(this).find(".ddl_close").html());
$(this).next(".dropdown-menu").show()
$("body").bind("mousedown", onBodyDown);
})
function hideMenu() {
$(".dropdown-menu").fadeOut("fast");
$("body").unbind("mousedown", onBodyDown);
//點擊其他位置 關閉下拉
function onBodyDown(event) {
if (!(event.target.id == "dropdown-menu" || $(event.target).parents(".dropdown-menu").length > 0)) {
hideMenu();
}
}
//關閉下來
$(".ddl_close").click(function() {
$(this).parent(".dropdown-menu").hide();
})
})
//-------------angular controller----js------------------------------------------
var app=angular.module('myApp',[]);
app.controller('news_Ctrl',function($scope,$http,$rootScope) {
//綁定 生態(tài)系統(tǒng)類型
$scope.setting_ecosystemType={//樹形基本配置
check: {enable: true,},
view: {showIcon: false},
data: {simpleData: {enable: true}},
callback: {onCheck: onCheck_ecosystemType}
};
function onCheck_ecosystemType(e,treeId,treeNode) {//點擊復選框觸發(fā)事件
var zTree=$.fn.zTree.getZTreeObj(treeId);
nodes=zTree.getCheckedNodes(true);
var v="";
for(var i=0,l=nodes.length;i if(nodes[i].isParent==false) { v+=nodes[i].name+",";}//記錄底層勾選的集樹,不記錄父級 } if(v.length>0) v=v.substring(0,v.length-1); //去掉最后一個分隔符逗號, $("#TextBox3").attr("value",v); //賦值到輸入框TextBox3里 } $http({ method: 'post', url: 'WebService/ddltreeWebService.asmx/getDllTree_by_ddlNameEn', //樹形的數(shù)據(jù)地址 dataType: "json", contentType: "application/json", data: { ddlNameEn: "ecosystemType" },// }).then(function successCallback(response) { var data = JSON.parse(response.data.d);//格式化json $scope.ecosystemTypeList=data; //賦值給angular變量 // console.log($scope.ecosystemTypeList);輸出測試 for (i = $scope.ecosystemTypeList.length - 1; i >= 0; i--) { $scope.ecosystemTypeList[i].open=true;//默認展開樹 } $.fn.zTree.init($("#ecosystemType"),$scope.setting_ecosystemType,$scope.ecosystemTypeList); //生成樹 }); });
分享文章:(簡)樹形ztree與angularjs結合,實現(xiàn)下級數(shù)據(jù),點擊復選框填寫到輸入框里
網(wǎng)站鏈接:http://weahome.cn/article/pgshhg.html