给定以下代码:
$(".force-selection").blur(function() {
var value = $('matched-item').val();
//check if the input's value matches the selected item
if(value != $('#matched-item').data('selected-item')) {
//they don't, the user must have typed something else
$('#matched-item')
.val('') //clear the input's text
.data('selected-item', ''); //clear the selected item
}
});
如何引用 $(".force-selection") jQuery 选择器匹配的元素?我对匿名 JS 函数不是很清楚,而且我对人们如何知道有时像这样声明它们感到困惑:
function()
有时像这样:
function(event)
有时像这样:
function(element, update, options)
以及所有其他方式。