摘要:
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.... 阅读全文
摘要:
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 阅读全文