我想在文本框中看到cookie值。
我用过这个
document.getElementsByName('Custom_Field_Custom2')[0].Value=$.cookie('artname',{ path:'/'});
但Cookie值未显示在文本框中。
我需要做什么?
答案 0 :(得分:1)
“value”属性是小写的“v”,而不是“Value”。
答案 1 :(得分:1)
value
区分大小写。尝试:
document.getElementsByName('Custom_Field_Custom2')[0].value=$.cookie('artname',{ path:'/'});