반응형
jQuery에서 사용자 정의 함수 호출
jQuery에서 사용자 정의 함수를 호출하려고합니다.
$(document).ready(function() {
$('#btnSun').click(function() {
myFunction();
});
$.fn.myFunction = function() {
alert('hi');
}
});
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<button id="btnSun">Say hello!</button>
다음도 시도했습니다.
$(document).ready(function() {
$('#btnSun').click(function() {
myFunction();
});
});
function myFunction() {
alert('hi');
}
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<button id="btnSun">Say hello!</button>
작동하지 않는 것 같습니다! 내가 어디에서 틀렸는 지 아십니까?
jQuery 이벤트를 통해 일반 함수를 호출하려면 다음과 같이 할 수 있습니다.
$(document).ready(function() {
$('#btnSun').click(myFunction);
});
function myFunction() {
alert('hi');
}
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<button id="btnSun">Say hello!</button>
이것을 시도하십시오. 항상 작동합니다.
$(document).ready(function() {
$('#btnSun').click(function() {
$.fn.myFunction();
});
$.fn.myFunction = function() {
alert('hi');
}
});
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<button id="btnSun">Say hello!</button>
Jaboc이 언급했듯이 플러그인 이라고 합니다. 이해를 돕기 위해 플러그인 함수는 호출되는 요소로 무언가를해야합니다. 다음을 고려하세요:
jQuery.fn.make_me_red = function() {
return this.each(function() {
this.style.color = 'red';
});
};
$('a').make_me_red();
다음은 올바른 방법입니다.
$(document).ready(function() {
$('#btnSun').click(function(){
$(this).myFunction();
});
$.fn.myFunction = function() {
alert('hi');
}
});
이 시도 $('div').myFunction();
이것은 작동합니다
$(document).ready(function() {
$('#btnSun').click(function(){
myFunction();
});
function myFunction()
{
alert('hi');
}
jQuery.fn.make_me_red = function() {
return this.each(function() {
this.style.color = 'red';
});
};
$('a').make_me_red() // - instead of this you can use $(this).make_me_red() instead for better readability.
$(document).ready(function() {
$('#btnSun').click(function(){
myFunction();
});
$.fn.myFunction = function() {
alert('hi');
};
});
Put '; '함수 정의 후 ...
jQuery.fn.make_me_red = function() {
alert($(this).attr('id'));
$(this).siblings("#hello").toggle();
}
$("#user_button").click(function(){
//$(this).siblings(".hello").make_me_red();
$(this).make_me_red();
$(this).addClass("active");
});
jQuery의 함수 선언 및 콜백 .
function hello(){
console.log("hello")
}
$('#event-on-keyup').keyup(function(){
hello()
})
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.2.3/jquery.min.js"></script>
<input type="text" id="event-on-keyup">
jQuery.fn.clear = function()
{
var $form = $(this);
$form.find('input:text, input:password, input:file, textarea').val('');
$form.find('select option:selected').removeAttr('selected');
$form.find('input:checkbox, input:radio').removeAttr('checked');
return this;
};
$('#my-form').clear();
참고 URL : https://stackoverflow.com/questions/2520172/calling-a-user-defined-function-in-jquery
반응형
'IT TIP' 카테고리의 다른 글
has_and_belongs_to_many, 조인 테이블에서 중복 방지 (0) | 2020.12.14 |
---|---|
다중 조인을 만들 때 tmp 테이블에 대한 MySQL 잘못된 키 파일 (0) | 2020.12.14 |
CSS에서 6 자리 색상 코드 대신 3 자리 색상 코드를 사용하는 방법은 무엇입니까? (0) | 2020.12.14 |
속성에 대한 고유 한 유효성 검사 규칙이있는 Laravel 업데이트 모델 (0) | 2020.12.13 |
지금부터 5 초 후 Java로 어떻게 말합니까? (0) | 2020.12.13 |