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