我问了一个问题,在输入字段中设置 cookie 并将其显示在 mainepage 的输入字段中。
http://stackoverflow.com/questions/15225225/set-cookie-in-jquery-dialog-and-show-selected-value-on-page-after-submit-with-po
它没有显示任何东西。我的 jquery.cookie.js 工作正常,因为我使用了更多的 cookie。也许这就是问题所在?也许第一个代码会覆盖下一个代码?我不知道这是否相关。
我有一个 jquery 对话框,当用户访问我的网站时会弹出。 http://kees.een-site-bouwen.nl/
您必须填写您的邮政编码,然后单击以继续访问该网站。代码是:
<div id="dialog" class="hidden" title="Welkom bij OostWestRegioBest.nl">
Vul hier uw postcode in: <br /><br />
<input type="text" id="postcode">
</div>
和我的 javascript 代码:
$(document).ready(function(){
//story the cookie on button press
$('#go').click(function(){
$.cookie('postcode', $('#postcode').val());
});
//retrieve the cookie on load if it's not undefined
if(typeof $.cookie('postcode') !== 'undefined'){
$('#postcode').val($.cookie('postcode'));
}
});
现在我想在主页表单的文本输入中打印保存的 cookie。
希望有人可以为此提供一个很好的解决方案。
谢谢