java菜鸟请教select下拉框的问题,向各位大神求教

请问,一个页面被提交,或这被刷新,请问怎么才能保存select里被选中的值?十万火急,在线等,谢谢各位大神... 请问,一个页面被提交,或这被刷新,请问怎么才能保存select里被选中的值?十万火急,在线等,谢谢各位大神 展开
 我来答
yugi111
2014-03-31 · TA获得超过8.1万个赞
知道大有可为答主
回答量:5.1万
采纳率:70%
帮助的人:1.3亿
展开全部
  1. 写入cookie

  2. 后台传回获取

  3. html5新特性

  4. ajax无刷新提交

追问
我是新手,能写点代码吗?谢谢了
追答
// Example:
// alert( readCookie("myCookie") );

function readCookie(name)
{
  var cookieValue = "";
  var search = name + "=";
  if(document.cookie.length > 0)
  { 
    offset = document.cookie.indexOf(search);
    if (offset != -1)
    { 
      offset += search.length;
      end = document.cookie.indexOf(";", offset);
      if (end == -1) end = document.cookie.length;
      cookieValue = unescape(document.cookie.substring(offset, end))
    }
  }
  return cookieValue;
}


// writeCookie("myCookie", "my name", 24);
// Stores the string "my name" in the cookie "myCookie" which expires after 24 hours.
// The hours parameter is optional; if hours is left out, the cookie value expires at the end of the visitor's browser session.
function writeCookie(name, value, hours)
{
  var expire = "";
  if(hours != null)
  {
    expire = new Date((new Date()).getTime() + hours * 3600000);
    expire = "; expires=" + expire.toGMTString();
  }
  document.cookie = name + "=" + escape(value) + expire;
}
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
hjm075
2014-03-31 · TA获得超过163个赞
知道答主
回答量:260
采纳率:0%
帮助的人:111万
展开全部
设置ID用js获取
追问
老兄,我是菜鸟,能给写一点代码吗?非常感谢
追答

function check()
{
var r=document.getElementById("s1").value;
alert(r);
}
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式