jq 动态给select 或者layui select 下拉框进行 赋值 并且默认选中

			var shiNameId=$('#shiNameId')[0];  //选中要赋值的元素
			shiNameId.add(new Option(bstCompanyAccount.workSiteCity),shiNameId.options[0])   //给第一个位置添加元素
			shiNameId[0].selected = true; //第一级默认选中

你可能感兴趣的:(js,layui,jq,jquery)