“Simpan elemen sembunyikan aksi di jQuery” Kode Jawaban

JQuery tersembunyi

$('#yourid').attr('hidden', false);
$('#yourid').attr('hidden', true);
butterfly

Simpan elemen sembunyikan aksi di jQuery

$(function() {
    if (Cookies.get('RemoveCount') == 'true' && Cookies.get('RemoveCount') != 'undefined') {
        $("#count").hide();
    } else {
        $("#count").show();
    }
}
Troubled Tamarin

Simpan elemen sembunyikan aksi di jQuery

<html>
<head>
<script
  src="https://code.jquery.com/jquery-3.1.1.min.js"
  integrity="sha256-hVVnYaiADRTO2PzUGmuLJr8BLUSjGIZsDYGmIJLv2b8="
  crossorigin="anonymous"></script>
<script src="../js.cookie.js"></script>
</head>
<body>
    <button id='clckced'> removeCount</button>
    <div id="RemoveCount">
    This should be removed.
    </div>
    <script>
        $(function(){
            if (Cookies.get('RemoveCount') == 'true' && Cookies.get('RemoveCount') != 'undefined' ){
                $("#RemoveCount").hide();
                } else {
                    $("#RemoveCount").show();
                }
            $('#clckced').click(function(){
                Cookies.set('RemoveCount', 'true');
                $("#RemoveCount").hide();
            })
        });
    </script>

</body>
</html>
Troubled Tamarin

Jawaban yang mirip dengan “Simpan elemen sembunyikan aksi di jQuery”

Pertanyaan yang mirip dengan “Simpan elemen sembunyikan aksi di jQuery”

Lebih banyak jawaban terkait untuk “Simpan elemen sembunyikan aksi di jQuery” di JavaScript

Jelajahi jawaban kode populer menurut bahasa

Jelajahi bahasa kode lainnya