JQuery 유틸리티 코드 세그먼트
3522 단어 jquery
현재 프론트 데스크톱 개발에는 사용할 jquery가 없어서는 안 된다.JQuery는 JavaScript에서 가장 유행하는 라이브러리입니다.HTML 요소 조작을 크게 가속화할 수 있습니다.또한 서로 다른 브라우저의 호환성을 보증합니다. 다음은 자주 사용하는 조작 실례를 보여 드리겠습니다.
우클릭 금지
일부 사이트의 내용에 대해 우리는 방문객이 직접 복제할 수 있기를 원하지 않는다. 우리가 있는 이곳에서 가장 간단한 제한을 채택할 수 있는데 바로 사용자의 오른쪽 키 조작을 금지하는 것이다.
$(document).ready(function() {
//catch the right-click context menu
$(document).bind("contextmenu",function(e) {
//warning prompt - optional
alert("No right-clicking!");
//delete the default context menu
return false;
});
});
텍스트 크기 조정
다음 코드 세션은 사용자가 텍스트 크기를 사용자 정의할 수 있도록 하는 공식적인 방법입니다
$(document).ready(function() {
//find the current font size
var originalFontSize = $('html').css('font-size');
//Increase the text size
$(".increaseFont").click(function() {
var currentFontSize = $('html').css('font-size');
var currentFontSizeNumber = parseFloat(currentFontSize, 10);
var newFontSize = currentFontSizeNumber*1.2;
$('html').css('font-size', newFontSize);
return false;
});
//Decrease the Text Size
$(".decreaseFont").click(function() {
var currentFontSize = $('html').css('font-size');
var currentFontSizeNum = parseFloat(currentFontSize, 10);
var newFontSize = currentFontSizeNum*0.8;
$('html').css('font-size', newFontSize);
return false;
});
// Reset Font Size
$(".resetFont").click(function(){
$('html').css('font-size', originalFontSize);
});
});
새 창에서 링크를 엽니다.
$(document).ready(function() {
//select all anchor tags that have http in the href
//and apply the target=_blank
$("a[href^='http']").attr('target','_blank');
});
스타일 교환
$(document).ready(function() {
$("a.cssSwap").click(function() {
//swap the link rel attribute with the value in the rel
$('link[rel=stylesheet]').attr('href' , $(this).attr('rel'));
});
});
정상으로 돌아오다
$(document).ready(function() {
//when the link is clicked
$('#top').click(function() {
//scoll the page back to the top
$(document).scrollTo(0,500);
}
});
마우스 좌표 가져오기
$().mousemove(function(e){
//display the x and y axis values inside the P element
$('p').html("X Axis : " + e.pageX + " | Y Axis " + e.pageY);
});
현재 마우스 좌표 보기
$(document).ready(function() {
$().mousemove(function(e){
$('# MouseCoordinates ').html("X Axis Position = " + e.pageX + " and Y Axis Position = " + e.pageY);
});
그림 미리 로드
현재 사이트를 더욱 신속하게 불러올 수 있다.그림이 불러올 때까지 기다릴 필요가 없습니다
jQuery.preloadImagesInWebPage = function() {
for (var ctr = 0; ctr < arguments.length; ctr++) {
jQuery("").attr("src", arguments[ctr]);
}
}
사용 방법: $.preloadImages("image1.gif", "image2.gif", "image3.gif"); 그림 로드 완료 확인:
$('#imageObject').attr('src', 'image1.gif').load(function() {
alert('The image has been loaded…');
});
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
jQuery 전후 예이 기사에서는 jquery after() 및 before() 메소드의 예를 볼 것입니다. before() 메서드는 선택한 요소 앞에 지정된 콘텐츠를 삽입합니다. after() 메서드는 선택한 요소 뒤에 지정된 콘텐츠...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.