我有一个jQuery对象,我正在使用.bind()
方法为该对象分配一个事件。但是我也将对象本身的引用传递给bind方法,如下所示:
$( document ).ready(function ()
{
// Grab the jQuery version of the DOM element.
var $formField1 = $( "#form-field-1" );
// I should probably store this stuff in $formField1.data(),
// but not until I find out if this can cause a circular reference.
var formFields = {
"jQ": $formField1,
"$comment": $( "#form-field-1-comment" ),
"commentAnswers": [ 2, 4 ]
};
// Set up the comment to show when a certain answer is given.
this.jQ.bind( "change", formFields, toggleComment );
});
function toggleComment( p_event )
{
// Show/hide comments based on the answer in the commentAnswers array.
if ( $.inArray($(this).val(), question.commentAnswers) > -1 )
{
question.$comment.parent().slideDown();
}
else
{
question.$comment.parent().slideUp();
}
}
我想知道这是否“实际上”会导致循环引用?
答案 0 :(得分:1)
这不是循环引用,但它是多余的。触发事件的对象将通过事件处理程序内的this
提供。没有必要传递它。
然而,重要的是要认识到设置时传递到bind
的数据是静态的。然而,事件处理程序中的this
将始终存储触发事件的特定对象。这两个对象可能相同,也可能不同,具体取决于bind
的应用范围。