123456789101112131415161718 |
- $(function () {
- let list_flex = $(".list .list-flex");
- Array.from(list_flex).forEach(item => {
- let list_item = $(item).find(".list-item");
- list_item.click(function () {
- if (!$(this).data("href")) {
- $(this).find(".p>div").click(function () {
- $("#toast").addClass("show")
- })
- return false;
- };
- window.location.href = $(this).data("href");
- })
- if (list_item.length == 1) {
- $(item).append(`<div style="visibility:hidden" class="list-item"></div>`);
- }
- })
- })
|