您好,登錄后才能下訂單哦!
這段時間,經常用javascript獲取各種form中的提交數據。考慮到代碼的一致和邏輯的簡化,建立如下兩個js函數用統一的方式獲取form中的數據.根據Formid 和 Inputid 獲得數據
函數調用方式如下德例子.
獲得數據:
var CharString=getValue(formid,'CharString');
var TestCondition=getValue(formid,'TestCondition');
var Hvalue=getValue(formid,'Hvalue');
var Lvalue=getValue(formid,'Lvalue');
var HunitID=getValue(formid,'HunitID');
var LogicTerm=getValue(formid,'LogicTerm');
設置數據
if(CharString) setValue(formid,'CharString',CharString);
Form的形式如下:
測試條件
-->
低值數據
操作符號
如上,所有不同類型的input的取值和設值都是一致的。注意,每個Input都必須有id屬性,form也是
兩個支持js函數如下:
//忽略類型,對Form中的Input數據設置值
function setValue(formid,inputid,strvalue) {
var l = new Number();
if (!strvalue) return ;
if (strvalue=='') return ;
eval('l = document.' + formid + '.elements.length')
for (var i = 0; i < l; i++) {
var tempid = new String();
var temptype = new String();
eval('tempid= document.' + formid + '.elements[i].name;');
eval('temptype= document.' + formid + '.elements[i].type;');
if (tempid==inputid){
if (temptype=='text'){
eval('document.' + formid + '.elements[i].value=strvalue;');
}else if (temptype=='textarea'){
eval('document.' + formid + '.elements[i].value=strvalue;');
}else if (temptype=='hidden'){
eval('document.' + formid + '.elements[i].value=strvalue;');
}else if(temptype=='select-one'){
var optionLen=new Number();
eval('optionLen=(document.' + formid + '.elements[i].options.length)');
for(var j=0;j
}
}else if(temptype=='radio'){
eval('if (document.' + formid + '.elements[i].value==strvalue) document.' + formid + '.elements[i].checked=true;');
}else if(temptype=='checkbox'){
var strvalues=(','+strvalue+',').split(',');
for(var j=0;j
eval('if (document.' + formid + '.elements[i].value==strvalues[j] ) document.' + formid + '.elements[i].checked=true; ');
}
}
}else if (temptype=='select-multiple'){
var strvalues=(','+strvalue+',').split(',');
var optionLen=new Number();
eval('optionLen=(document.' + formid + '.elements[i].options.length)');
for(var k=0;k
}
}
}
}
}
}
//忽略類型,對Form中的Input數據取值
function getValue(formid,inputid) {
var tempvalue = new String();
var l = new Number();
eval('l = document.' + formid + '.elements.length')
for (var i = 0; i < l; i++) {
var tempid = new String();
var temptype = new String();
eval('tempid= document.' + formid + '.elements[i].name;');
eval('temptype= document.' + formid + '.elements[i].type;');
//alert(tempid);
//alert(temptype);
if (tempid==inputid){
if (temptype=='text'){
eval('tempvalue= document.' + formid + '.elements[i].value;');
}else if (temptype=='textarea'){
eval('tempvalue= document.' + formid + '.elements[i].value;');
}else if (temptype=='hidden'){
eval('tempvalue= document.' + formid + '.elements[i].value;');
}else if(temptype=='select-one'){
eval('tempvalue=document.' + formid + '.elements[i].options[document.' + formid + '.elements[i].selectedIndex].value;');
}else if(temptype=='radio'){
eval('if(document.' + formid + '.elements[i].checked) tempvalue=document.' + formid + '.elements[i].value;');
}else if(temptype=='checkbox'){
var checkValue=new String();
checkValue="";
eval('if (document.' + formid + '.elements[i].checked==true) {checkValue=document.' + formid + '.elements[i].value}');
if(checkValue==''){
}else{
if (tempvalue==''){
tempvalue+=checkValue;
}else{
tempvalue+=','+checkValue;
}
}
}else if (temptype=='select-multiple'){
//計算Option的個數
//根據個數循環檢測數值,并
var optionLen=new Number();
eval('optionLen=(document.' + formid + '.elements[i].options.length)');
for(var j=0;j
checkValue="";
eval('if (document.' + formid + '.elements[i].options[j].selected) checkValue=(document.' + formid + '.elements[i].options[j].value);');
if(checkValue==''){
}else{
if (tempvalue==''){
tempvalue+=checkValue;
}else{
tempvalue+=','+checkValue;
}
}
}
//循環檢查數據
}
}
}
return tempvalue;
}
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。