在textbox onchange属性上,我调用了一个javascript函数 我写了这个,
function testbox1()
{
var strline1side1 = document.frmartwork.side1textbox1.value;
document.cookie="lineside1="+strline1side1.replace(" "," ")+";path=/;";
}
我想在页面重新加载时分配这个“lineside1”cookie值
window.onload=function()
{
document.frmartwork.side1textbox1.value = "here i want that cookie "
}
我该怎么做?
答案 0 :(得分:2)
您应该使用jquery cookie plugin
function testbox1()
{
var strline1side1 = document.frmartwork.side1textbox1.value;
$.cookie('lineside1',strline1side1.replace(" "," "));
}
window.onload=function()
{
document.frmartwork.side1textbox1.value = $.cookie('lineside1')
}
答案 1 :(得分:0)
如果您使用的是jQuery,请使用jQuery.cookies插件。它安静简单。
$.cookies('cookiename') // get value
$.cookies('cookiename', value) // set value
function testbox1()
{
$.cookies('lineside1', $('#side1textbox1').val());
}
$(document).ready(function(){
$('#side1textbox1').val($.cookies('lineside1'));
});
另外,如果你开始使用jQuery - 使用它:)