jQuery.support 예제
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.4.1/jquery.min.js"></script> <script> $(document).ready(function(){ $("#demo").html("이 브라우저는 XMLHttpRequest 객체 생성가능? : " + jQuery.support.ajax); }); </script> <p id='demo'></p> 결과보기
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.4.1/jquery.min.js"></script>
<script>
$(document).ready(function(){
$("#demo").html("이 브라우저는 XMLHttpRequest 객체 생성가능? : " + jQuery.support.ajax);
});
</script>
<p id='demo'></p>
결과보기
jQuery.support 정의
다양한 브라우저 기능 또는 버그를 나타내는 속성 모음으로,해당 브라우저가 해당 기능 지원하는지 여부 판별할 때 사용. 주로 jQuery 내부용으로 사용
다양한 브라우저 기능 또는 버그를 나타내는 속성 모음으로,해당 브라우저가 해당 기능 지원하는지 여부 판별할 때 사용.
주로 jQuery 내부용으로 사용
jQuery.support 구문
jQuery.support.propvalue propvalue 필수. 테스트할 함수 지정.가능한 값은 아래와 같음. ajax boxModel changeBubbles checkClone checkOn cors cssFloat hrefNormalized htmlSerialize leadingWhitespace noCloneChecked noCloneEvent opacity optDisabled optSelected scriptEval() style submitBubbles tbody
jQuery.support.propvalue
propvalue
필수. 테스트할 함수 지정.가능한 값은 아래와 같음.
ajax
boxModel
changeBubbles
checkClone
checkOn
cors
cssFloat
hrefNormalized
htmlSerialize
leadingWhitespace
noCloneChecked
noCloneEvent
opacity
optDisabled
optSelected
scriptEval()
style
submitBubbles
tbody