목록개발자의 길/jQuery (2)
내맘대로 살기🎉
[jQuery] textarea의 스크롤 유무 확인
textarea의 스크롤이 있는지 없는지 확인하는 것이 필요했다. (function($) { $.fn.hasScrollBar = function() { return this.get(0).scrollHeight > this.innerHeight(); } })($); - 스크롤의 유무를 확인하는 function을 직접 만들어줘서 사용하면 된다. fn에 대해 찾아봤는데, fn 속성은 prototype 속성의 가명이라고 한다.또한, prototype과 fn은 완전히 같은 것이라고 한다.
개발자의 길/jQuery
2017. 4. 27. 13:21
[jQuery] iframe에서 checkbox의 값을 가져오기.
$('input[type="checkbox"]',top.window.document).each(function(){ $(this).attr("checkOutBox",$(this).prop('checked')) }) - 확인되었는지 알 수 있는 attribute를 추가하고, 실제 checkbox의 체크여부를 true, false로 넣어준다. $('input[type="checkbox"]').each(function(){ if($(this).attr('checkOutBox') == "true"){ this.checked = true; }else{ this.checked = false; } }) - checkOutBox라는 attribute가 있는지 확인하고, 그에 맞게 true, false로 값을 초기화해준..
개발자의 길/jQuery
2017. 4. 26. 08:56