PHP頁面輸出時(shí)js設(shè)置input框的選中值代碼
關(guān)于php頁面輸出時(shí)js設(shè)置input框的選中值的.代碼如下所示:
/* 設(shè)置表單的值 */function setValue(name, value) {var first = name.substr(0, 1),input, i = 0,val;if (value === "") return;if ("#" === first || "." === first) {input = $(name);} else {input = $("[name= + name + ]");}if (input.eq(0).is(":radio")) { //單選按鈕input.filter("[value= + value + ]").each(function() {this.checked = true});} else if (input.eq(0).is(":checkbox")) { //復(fù)選框if (!$.isArray(value)) {val = new Array();val[0] = value;} else {val = value;}for (i = 0, len = val.length; i < len; i++) {input.filter("[value= + val[i] + ]").each(function() {this.checked = true});}} else { //其他表單選項(xiàng)直接設(shè)置值input.val(value);}}
以上所述是小編給大家介紹的PHP頁面輸出時(shí)js設(shè)置input框的選中值,希望對大家有所幫助。
【PHP頁面輸出時(shí)js設(shè)置input框的選中值代碼】相關(guān)文章: