日期:2014-05-16  浏览次数:20358 次

jquery问题求大侠
Jquery 遍历页面所有的name值包含“gid”的input text 控件,同时获得他们的name值赋给他们的value

------解决方案--------------------
$("input[type='text']").filter("[name*='gid']").each(function(key,val){
$(this).val($(this).attr("name"));
})
------解决方案--------------------
保存表单时候写cookie :
function write(){
var s="{";
$("input[type='text']").filter("[name*='gid']").each(function(key,val){
s+=$(this).attr("name");
s+=":";
s+=$(this).val();
})
s+="}";
$.cookie('input_text', s, {path: '/'});
}

读cookie 赋值:

$(
var vals= $.cookie('input_text');
if(vals==null
------解决方案--------------------
vals=="") return;
var v=eval(vals);
$("input[type='text']").filter("[name*='gid']").each(function(key,val){
var nae=$(this).attr("name");
$(this).val(v.nae);
})

)
你需要个cookie 插件 jquery的  ,没有测试