文件名称:jquery 2级,3级级联
文件大小:5KB
文件格式:RAR
更新时间:2014-06-20 14:18:14
jquery 2级,3级级联
//绑定部门,员工级联效果
$("select[name='department.id']").each(function(){
$(this).bind("change",function(){
var did = $(this).val();
$.ajax({
url:basePath + '/admin/organization/searchPositionListByDepartmentId.jhtm',
type:'POST',
data:{'department.id':did},
success:function(data){
var sel = $("select[name='position.parentId']");
$("select[name='position.parentId'] option").each(function(){$(this).remove();});
$("").appendTo(sel);
for(var i=0;i
【文件预览】:
级联
----department_edit.jsp(3KB)
----common.js(622B)
----java代码.txt(594B)
----struts2配置.txt(989B)
----position_edit.jsp(5KB)
----company_manager.js(3KB)