selectElement.jsp
852 Bytes
<%@ page language="java" import="java.util.*" pageEncoding="UTF-8" contentType="text/html; charset=UTF-8"%>
<script type="text/javascript">
//初始化下拉菜单的值
function setwindowsdefaultproperty(propertyParentVal,windowsPropertyId){
if($("#"+windowsPropertyId).length>0 && $("#"+windowsPropertyId+" option").length<=0){
$.ajax({
url: "<%=request.getContextPath()%>/categorysAction!getCategerysByParentId.action",
data:"parentId="+propertyParentVal+"&date="+new Date().getTime(),
type: "get",
dataType:"json",
success: function(data){
$("#"+windowsPropertyId).append("<option value=''>请选择</option>");
$(data).each(function(i,n){
$("#"+windowsPropertyId).append("<option value='"+n.bean.id+"'>"+n.bean.cnname+"</option>");
});
}
});
}
}
</script>