Javascript - 输入字段更改设置Cookie的值

时间:2011-09-27 00:52:36

标签: javascript jquery cookies

感谢任何提前帮助我解决问题的人。

我只是在输入值发生变化时,尝试将表单输入类型=“text”的值保存到cookie中。想想我几乎拥有它,但我无法让它发挥作用。

这是我到目前为止所拥有的

- 这是javascript Set_cookie功能。

function Set_Cookie( name, value, expires, path, domain, secure )
{
var today = new Date();
today.setTime( today.getTime() );

if ( expires )
{
expires = expires * 1000 * 60 * 60 * 24;
}
var expires_date = new Date( today.getTime() + (expires) );

document.cookie = name + "=" +escape( value ) +
( ( expires ) ? ";expires=" + expires_date.toGMTString() : "" ) +
( ( path ) ? ";path=" + path : "" ) +
( ( domain ) ? ";domain=" + domain : "" ) +
( ( secure ) ? ";secure" : "" );
}

- 这是假设在变化时保存输入的函数。

$(document).ready(function () {
    $('#inputText1').change(function () {
      Set_Cookie( 'inputText1', .val($(this)), '', '/', '', '' );
    });
});

- 输入字段

input type="text" name="inputText1" id="inputText1"

再次感谢任何可以提供帮助的人。

1 个答案:

答案 0 :(得分:1)