摘要: 方案原理: 下拉的时候 前台利用js将DropDownList的值替换给 input,style样式 将两个控件重叠;后台保存 input 控件的值,页面加载的时候也加载input的值 ;编辑的是input;这就实现了既可以下拉,又可以编辑了。cs: .noprint { display: none; }js: function changeValues(ctrl1,ctrl2) { document.getElementById(ctrl2).value = document.getElementById(ctrl1).value;... 阅读全文
posted @ 2011-11-02 15:47 刘昊天 阅读(575) 评论(3) 推荐(1)