亚洲在线久爱草,狠狠天天香蕉网,天天搞日日干久草,伊人亚洲日本欧美

為了賬號安全,請及時綁定郵箱和手機立即綁定
已解決430363個問題,去搜搜看,總會有你想問的

切換 div 并設置 cookie 以保存 jQuery

切換 div 并設置 cookie 以保存 jQuery

皈依舞 2022-06-05 17:00:14
我使用以下代碼來切換特定的 div 并使用 cookie 保存設置,以便它保留更改。但由于某種原因,保存 cookie 部分無法正常工作。例如,使用以前的瀏覽器按鈕時,似乎沒有保存 cookie。我在當前代碼中缺少什么完美添加 cookie 并檢查它。function getCookieValue(a) {  var b = document.cookie.match('(^|;)\\s*' + a + '\\s*=\\s*([^;]+)');  return b ? b.pop() : '';}$(document).ready(function() {  var redEl = $('input#togglebtw');  if (document.cookie.indexOf('togglebtw=') != -1) {    redEl.prop("checked", $.parseJSON(getCookieValue("togglebtw")));  }  if (redEl.prop("checked")) {    $(".price-container .price-including-tax").hide();    $(".price-container .price-excluding-tax").show();  } else {    $(".price-container .price-excluding-tax").hide();    $(".price-container .price-including-tax").show();  }  $('input#togglebtw').click(function() {    var expiryDate = new Date();    expiryDate.setDate(expiryDate.getDate() + 31);    expiryDate = expiryDate.toUTCString();    if ($(this).attr("class") == "btwToggler") {      if (redEl.prop("checked")) {        $(".price-container .price-including-tax").hide();        $(".price-container .price-excluding-tax").show();      } else {        $(".price-container .price-excluding-tax").hide();        $(".price-container .price-including-tax").show();      }      document.cookie = "togglebtw=" + this.checked.toString() + "; expires=" + expiryDate;    }  });});<input id="togglebtw" class="btwToggler" type="checkbox">
查看完整描述

1 回答

?
叮當貓咪

TA貢獻1776條經驗 獲得超12個贊

使用 local 或 sessionStorage,則無需擔心 cookie 是否正確


試試這個簡化版


const checkBTW = function() {

  const checked = $('#togglebtw').is(":checked");

  $(".price-container .price-including-tax").toggle(!checked);

  $(".price-container .price-excluding-tax").toggle(checked);

  localStorage.setItem("togglebtw",checked?"true":"false");

};

$(function() {

  $('#togglebtw')

    .on("click",checkBTW)

    .prop("checked",localStorage.getItem("togglebtw")==="true"); 

  checkBTW();

});


查看完整回答
反對 回復 2022-06-05
  • 1 回答
  • 0 關注
  • 111 瀏覽
慕課專欄
更多

添加回答

舉報

0/150
提交
取消
微信客服

購課補貼
聯系客服咨詢優惠詳情

幫助反饋 APP下載

慕課網APP
您的移動學習伙伴

公眾號

掃描二維碼
關注慕課網微信公眾號