使用jquery或javascript在文本框中获取cookie值

时间:2011-09-27 12:56:27

标签: javascript jquery

我想在文本框中看到cookie值。

我用过这个

document.getElementsByName('Custom_Field_Custom2')[0].Value=$.cookie('artname',{ path:'/'});

但Cookie值未显示在文本框中。

我需要做什么?

2 个答案:

答案 0 :(得分:1)

“value”属性是小写的“v”,而不是“Value”。

答案 1 :(得分:1)

value区分大小写。尝试:

document.getElementsByName('Custom_Field_Custom2')[0].value=$.cookie('artname',{ path:'/'});