我正在尝试制作一个简单的年龄计算器。它只是在输入端添加了年龄。它通过日期选择器计算输入中的年龄。
.split不是很干净,但是它只是更改日期格式。

我猜我的问题是范围问题。

我想要的是我的插件,用于在输入更改时更新年龄。这里是:

 (function ($) {
        $.fn.ageIt = function () {
            var that = this;
            var positonthat = $(that).position();
            var sizethat = $(that).width();

            //Add div for ages
            var option = {
                "position": " relative",
                "top": "0",
                "left": "300"
            };

            var templateage = "<div class='whatage" + $(this).attr('id') + "' style='display:inline-block;'>blablabla</div>";
            $(that).after(templateage);
            var leftposition = (parseInt(sizethat) + parseInt(positonthat.left) + parseInt(option.left));
            var toposition = parseInt(positonthat.top) + parseInt(option.top);

            $('.whatage' + $(this).attr("id")).css(
                {
                    position: 'absolute',
                    top: toposition + "px",
                    left: leftposition + "px",
                    "z-index": 1000,
                }

                );

            //uptadateage
            function updateage(myobj) {
                var formateddate = myobj.val().split(/\//);
                formateddate = [formateddate[1], formateddate[0], formateddate[2]].join('/');
                var birthdate = new Date(formateddate);
                var age = calculateAge(birthdate);
                $('.whatage' + $(myobj).attr("id")).text(age + "&nbsp;ans");

            };

            //updateage($(this));
            $(this).on("change", updateage($(this)));

            //
        }
    })(jQuery);

    function calculateAge(birthday) {
        var ageDifMs = Date.now() - birthday.getTime();
        var ageDate = new Date(ageDifMs); // miliseconds from epoch
        return Math.abs(ageDate.getUTCFullYear() - 1970);
    }

    $("#BirthDate").ageIt();

最佳答案

这行:

        $(this).on("change", updateage($(this)));


意思是,“将'change'事件的处理程序设置为使用参数updateage()调用函数$(this)的结果。这是一个函数调用。因为您已经在变量this的值cc>,您可以编写that使其不需要参数:

        function updateage() {
            var formateddate = that.val().split(/\//);
            formateddate = [formateddate[1], formateddate[0], formateddate[2]].join('/');
            var birthdate = new Date(formateddate);
            var age = calculateAge(birthdate);
            $('.whatage' + $(that).attr("id")).text(age + "&nbsp;ans");

        };


然后设置事件处理程序:

    $(this).on("change", updateage);


请注意,在您正在构建的jQuery插件中,updateage()的值将是在其上调用方法的jQuery对象。您无需创建新的jQuery对象(this$(this))。因此,只需编写以下内容即可:

    this.on("change", updateage);

关于javascript - 为什么我的jquery插件中的.change()函数不起作用?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/38328835/

10-09 15:39