次のコードが与えられます:
$(".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)
そして他のすべての方法。