Jeesit下面form:select的二级联动

其中最主要的是οnchange="findtemplate(this.options[this.options.selectedIndex].value);"  拿到选择第一个的值;

    
function findtemplate(v) {
		$.ajax({
			type : "post",
			async : false,
			url : "getPostTemplateJson",
			data : {
				'type' : v
			},
			dataType : "json",
			success : function(msg) {
				$("#template").empty();
				if (msg.length > 0) {
					for (var i = 0; i < msg.length; i++) {
							var partId = msg[i].value;
							var partName = msg[i].label;
							var $option = $("

 

你可能感兴趣的:(java,jeesit)