使用prototype.js这个js库,这个在网上一搜就能找到了,是一个开源的js函数库。
看到今天贴了几个联动菜单的帖子
这个应该大家都有各自比较好的代码了
我也顺手贴一个我们team里面用的比较小巧的代码
// author: downpour
var doublecombo = class.create();
doublecombo.prototype = {
initialize: function(source, target, ignore, url, options, excute) {
this.source = $(source);
this.target = $(target);
this.ignore = $a(ignore);
this.url = url;
this.options = $h(options);
this.source.onchange = this.dochange.bindaseventlistener(this);
if(excute) {
this.dochange();
}
},
dochange: function() {
if(this.source.value != '') {
// first clear the ignore ones
this.ignore.each(
function(value) {
$(value).options.length = 1;
$(value).options[0].selected = 'selected';
}
);
// create parameter for ajax
var query = $h({ id: this.source.value });
var parameters = {
method: 'post',
parameters: $h(this.options).merge(query).toquerystring(),
oncomplete: this.getresponse.bindaseventlistener(this)
}
var locationrequest = new ajax.request( this.url, parameters );
}
},
getresponse: function(request) {
this.target.options.length = 1;
this.target.options[0].selected = 'selected';
var response = $a(request.responsetext.trim().split(';'));
response.length--;
for(var i = 0; i < response.length; i++) {
var optionparam = response[i].split(',');
this.target.options[this.target.options.length] = new option(optionparam[1], optionparam[0]);
}
}
}
简单说一下几个参数吧:
source 第一级菜单
target 联动菜单
ignore 当有时候3级联动时,例如 国家 省 市 例如上海没有省的,可以忽略第3级菜单
url action url
options action参数
excute 是否联动
拿比较常见的例子来看 国家 省 市 3级联动来作为例子
代码
<html-el:select property="country" styleid="country" >
<html-el:options collection="countries" property="id" labelproperty="name" />
</html-el:select>
<html-el:select property="province" styleid="province">
<option value="">--please select--</option>
................
</html-el:select>
<html-el:select property="city" styleid="city">
<option value="">--please select--</option>
................
</html-el:select>
<script type="text/javascript">
new doublecombo('country', 'province', null, '<c:url value="/xxxx.do?combo=true"></c:url>', {});
<script type="text/javascript">
new doublecombo('province', 'city', null, '<c:url value="/xxxx.do?combo=true"></c:url>', {});