$(function () { $(".search-submit").click(function (event) { $(this).removeAttr("name"); event.preventDefault(); var val = $.trim($(".search-title").val()); if (val !== "") { $(".wp-search").find("form").submit(); } else { alert("请输入关键词"); } return false; }); $(".news .month").each(function(){ console.log($(this).text()) $(this).text(getEnmonth(parseInt($(this).text())) ) }) }); fontSize(); $(window).resize(function () { fontSize(); }); function fontSize() { var size; var winW = window.innerWidth; $("body").removeClass("mobile") if (winW <= 3800 && winW > 1920) { size = Math.round(winW / 19.2); } else if (winW <= 1920 && winW > 1720) { size = 100; } else if (winW <= 1720 && winW > 999) { size = Math.round(winW / 17.2); } else if (winW <= 999) { $("body").addClass("mobile") size = 65; } $('html').css({ 'font-size': size + 'px' }) } function getEnmonth(month) { const monthList = ["一月", "二月", "三月", "四月", "五月", "六月", "七月", "八月", "九月", "十月", "十一月", "十二月"] return monthList[month] }