摘要: var RadioListObj = function (id, url) { this.URL = url;//radiobox source URL this.ID = id;//radioList ID, radio id is ID_radio this.method = 'get'; //ajax method this.width = 600; //initial width this.height = 100; //initial height this.checkedValue = ""; //radiolist value this.... 阅读全文
posted @ 2013-07-23 10:49 永远没有尽头 阅读(752) 评论(0) 推荐(0) 编辑
摘要: var ComboboxObj = function (id, url) { this.URL = url; //Ajax url this.ID = id; //combobox id this.method = 'get'; //Ajax type "POST" or "GET" this.width = 250; //combobox width this.height = 22; //combobox height this.selectValue = ""; //combobox selected value 阅读全文
posted @ 2013-07-23 10:46 永远没有尽头 阅读(312) 评论(0) 推荐(0) 编辑