javascript – jQuery,如何将args传递给事件处理程序?

前端之家收集整理的这篇文章主要介绍了javascript – jQuery,如何将args传递给事件处理程序?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
如何将args传递给事件处理函数?这将在页面加载上运行该功能,这不是所需的效果.我需要这个例程“validateText”来运行几个不同的文本框,下拉组合.我可以重用“validateText”而不是每个文本/下拉组合创建一个??
//add blur event handler to the textBox with jQuery when the page is finished loading
    $(document).ready(function() {
        $("#myTextBox").blur(validateText($("#myTextBox"),$("#Select1")));
    })


    function validateText(textBox,dropdown) {

        var message = $("#message");
        var isValid = false;
        //get the value the user type in
        var textBoxValue = $(textBox).val();

        //get the options from the lookup
        var options = $("option",dropdown);

        //loop through the options and compare it to "value"
        options.each(function() {
            var optValue = $(this).val();
            if (optValue === textBoxValue) {
                isValid = true;
            }
        });

        if (!isValid)
            message.text(textBoxValue + " is not a valid value from the list.");
        else
            message.text(textBoxValue + " is perfectly valid.");
    }

解决方法

它在加载时调用的原因是因为移交带有参数的函数名称会主动调用它.您可以通过在匿名函数中包含对validateText的调用来有效地模仿您正在寻找的内容.
$(document).ready(function() {
    $("#myTextBox").blur(function(){
        // Since in your original example you used $("#myTextBox") as an arg,this mimics it
        validateText($(this),$("#Select1"));
    });
});

匿名函数,因为它使用’this’关键字,如果您将其从#myTextBox更改为textarea或其他任何内容,则应使用初始选择器进行更好的扩展. =)

原文链接:https://www.f2er.com/jquery/159373.html

猜你在找的jQuery相关文章