[JQUERY] 대신 토글`어떻게 사용하는 (...)`> 1.8 jQuery를에?
JQUERY대신 토글`어떻게 사용하는 (...)`> 1.8 jQuery를에?
해결법
-
1.다음은 간단한 구현은 다음과 같습니다
다음은 간단한 구현은 다음과 같습니다
$.fn.toggleClick = function() { var methods = arguments; // Store the passed arguments for future reference var count = methods.length; // Cache the number of methods // Use return this to maintain jQuery chainability // For each element you bind to return this.each(function(i, item){ // Create a local counter for that element var index = 0; // Bind a click handler to that element $(item).on('click', function() { // That when called will apply the 'index'th method to that element // the index % count means that we constrain our iterator between 0 // and (count-1) return methods[index++ % count].apply(this, arguments); }); }); };
및로 사용
$('selector').toggleClick( function1, function2, ... );
from https://stackoverflow.com/questions/14382857/what-to-use-instead-of-toggle-in-jquery-1-8 by cc-by-sa and MIT license
'JQUERY' 카테고리의 다른 글
[JQUERY] JQuery와 모바일 / 폰갭를 함께 사용의 올바른 방법은? (0) | 2020.10.23 |
---|---|
[JQUERY] 데이터가로드 된 후 어떻게있는 jqGrid의 열 너비를 조정하려면? (0) | 2020.10.23 |
[JQUERY] 구글 reCAPTCHA를 어떻게 요구하려면? (0) | 2020.10.23 |
[JQUERY] jQuery를 UI "$ ("#의 날짜 선택기 "). 날짜 선택기 기능은 아니다" (0) | 2020.10.23 |
[JQUERY] 지연, 10 초 동안-팝업 번만 팝업 (0) | 2020.10.23 |