<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">$(function () {
    // tabSwicth
    let phoneTabcont = $(".tabContentPhone");
    let accountTabcont = $(".tabContentAccount");
    $("ul.tabBoxSwitchUl").on('click', 'li', function () {
        let i = $(this).index();
        $(this).addClass("tab-active").siblings('li').removeClass("tab-active");
        $("div.tabcont").eq(i).addClass("active-login").siblings().removeClass("active-login");
    });
    $("button.selectBtn").click(function (e) {
        if ($(".selectConentent").is(':hidden')) {
            $(".selectConentent").show();

        } else {
            $(".selectConentent").hide();
        }
        $(document).one('click', function () {
            $(".selectConentent").hide();
        });
        e.stopPropagation();
    });
    $(".selectConentent").on('click', function (e) {
        e.stopPropagation();
    })

    function Blurr(eleb, contentb) {
        eleb.blur(function (e) {
            e.preventDefault();
            let _this = $(this);
            if (_this.val() == null || _this.val() == "" || _this.val() == undefined) {
                // let content = "è¯·è¾“å…¥çŸ­ä¿¡éªŒè¯ç&nbsp;"
                _this.parent().addClass('isShow').attr('data-content', contentb);
                _this.attr("placeholder", " ");
            } else {
                _this.parent().removeClass('isShow');
            }
        })
    }
    // ercode tab
    $(".swicth-ercode").click(function (e) {
        e.preventDefault();
        $(".loginForm#form_key").hide();
        $(".ercodeSignBox").show();
        if ($(".ercode-wx").hasClass('hidden')) {
            $(".ercode-wx").removeClass('hidden');
            $(".ercode-bind").addClass('hidden');
            $(".ercode-bind input").val('');
        }
    });
    $(".switch-input").click(function (e) {
        e.preventDefault();
        $(".loginForm#form_key").show();
        $(".ercodeSignBox").hide();
    });
    // æäº¤è¡¨å•éªŒè¯

});</pre></body></html>