我正在使用jQuery Cookie插件。我想,当我写文本输入时,请记住下一节的文本。
$(".webform-submit").click(function () {
$.cookie('telCookie', $telephoneCookie.val(), {
expires: 365
});
});
//set the value of the cookie to the element element_1
var $telephoneCookie = $("#edit-submitted-telefon").val($.cookie("telCookie"))
HTML:
<input type="text" id="edit-submitted-telefon" name="submitted[telefon]" step="any" class="form-text form-number required">
但是值不是我的文字,所以这个输入得到undefined
我该如何解决?感谢。
答案 0 :(得分:0)
我认为您需要进行更改,因为您将jquery变量与javascript变量混合
变化
var $.telephoneCookie = $("#edit-submitted-telefon").val($.cookie("telCookie"))
并且还要改变
$.cookie('telCookie', $.telephoneCookie, {
expires: 365
});