我想知道是否有人新的如何保持與「這個」關鍵詞範圍內的鏈接控制。它使用.find下破壞掉了鏈子(這個)。單擊沒有人知道如何從打破jquery控制鏈這個失去範圍
(function($) {
$.fn.mycontrol = function() {
$(window).resize(function() {
alert('resize')
}).scroll(function() {
alert('scroll')
}).find(document).bind('init', function() {
alert('scroll')
}).ready(function() {
$(this).trigger('init');
}).find(this).click(function() {
alert('click'); // $(this) loses scope here
});
})(jQuery);
$(document).ready(function() {
$('#mycontrol').mycontrol()
});
你的代碼中有一個語法錯誤,你沒有關閉'mycontrol函數'。 – undefined