如何将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或其他任何内容,则应使用初始选择器进行更好的扩展. =)