即使在我访问下一页或刷新上一页之后,如何保持上一页的按钮禁用

时间:2016-12-01 12:50:39

标签: javascript jquery

这是我的代码,但刷新后启用按钮

function disablebtn(){
    $("input[type=checkbox]").prop("disabled", true);
    $(".buttons11").prop("disabled", true);
    return true;
}

1 个答案:

答案 0 :(得分:2)

您应该使用HTML5 Web存储来满足此类要求。

以下代码应该为您提供一个想法:

// For after refresh or later navigation to the page
if (localStorage.btnStatus === "disabled") {
    disablebtn();
}

function disablebtn() {
    $("input[type=checkbox]").prop("disabled", true);
    $(".buttons11").prop("disabled", true);
    localStorage.btnStatus = "disabled";
    return true;
}