jquery 팝 업 층 등록 페이지 등(asp.net 배경)
1:간소 화 된 페이지:
2:텍스트 알림 과 원 각 테두리 띄 우기:
3:여론 조사 지지(비동기 제출)
4:추천 사용자 이름 자동 검색(테스트 데이터)
5:데이터 유효성 검증
6:달력
7:드래그 지원
8:화면 에 미 끄 러 짐
9:over
【3】코드 분석 1.팝 업 층 의 제작,a.먼저 이 세 가 지 를 참조:
<script src="jquery-1.4.2.min.js" type="text/javascript" language="javascript"></script>
<script src="jquery-impromptu.3.1.min.js" type="text/javascript" language="javascript"></script>
<link rel="stylesheet" media="all" type="text/css" href="examples.css" />
b.이 방법$.prompt 를 호출 하여 팝 업 을 실현 합 니 다.2.띄 우기 문자 a.먼저 이 두 개 를 인용 합 니 다:
<link rel="stylesheet" media="all" type="text/css" href="jquery.tooltip.css" />
<script src="jquery.tooltip.min.js" type="text/javascript" language="javascript"></script>
b.아래 코드 를 호출 하여 띄 우기:코드
$("#suggest2").tooltip({bodyHandler: function() {return " ";},showURL: false});
$("#cemail").tooltip({bodyHandler: function() {return " ";},showURL: false});
$("#Text1").tooltip({bodyHandler: function() {return " ";},showURL: false});
3.투표 a.먼저 아래 두 개 를 참조 합 니 다:
<script type="text/javascript" src="jquery.rater.js"></script>
<link rel="stylesheet" type="text/css" href="rater.css" media="screen" />
b.$('#demo 2').rater('Handler 1.ashx')를 호출 하여 투 표를 실현 합 니 다.추천 사용자 이름 자동 검색(자동 완성)a.아래 두 개
<script src="jquery.autocomplete.min.js" type="text/javascript" language="javascript"></script>
<link rel="stylesheet" media="all" type="text/css" href="jquery.autocomplete.css" />
<script src="localdata.js" type="text/javascript" language="javascript"></script>
b 를 참조 하여$('\#suggest 2').focus().autocomplete(cit).ies);자동 검색 을 실현 합 니 다.(localdata.js 에 있 는 로 컬 테스트 데이터 사용)5.데이터 검증 a.이
<style type="text/css">
#commentForm { width: 500px; }
#commentForm label { width: 500px; }
#commentForm label.error, #commentForm input.submit { margin-left: 0px;color: red; }
</style>
(commentForm 을 form 으로 하 는 ID)b.이$("\#commentForm")를 호출 합 니 다.vaidate()를 사용 하여 검증 합 니 다.form 에 있 는 class 와 일부 속성 이 설정 되 어 있 습 니 다.모든 인증 은 자동 입 니 다.예 를 들 어 메 일6.달력 이 부 끄 럽 습 니 다!처음 사용 한 JQuery 달력 플러그 인 은 나중에 탄 상자 위 에 놓 을 수 없 기 때문에 다른 것 으로 바 꾸 었 습 니 다.a.먼저 이 두 개의
<script src="calendar2008.js" type="text/javascript" language="javascript"></script>
<link rel="stylesheet" media="all" type="text/css" href="rightbar.css" />
b 를 인용 한 다음 에 다음 코드
var c = new Calendar("c");
document.write(c);
//
c.offsetTop =22;
c.offsetLeft = 25;
html 코드 를 쓰 십시오.
<input class="required dateISO" name="begintime" type="text" id="Text1" size="21" onfocus="c.showMoreDay = false;c.show(this);" value=""/>
은 그의 class="required dateISO"자동 검증 시간 형식 7.드래그 a.먼저 이것 을 참조 하 십시오.
$(document).ready(function() {
$.fn.extend({
dropIn: function(speed, callback){
var $t = $(this);
if($t.css("display") == "none"){
eltop = $t.css('top');
elouterHeight = $t.outerHeight(true);
$t.css({ top: -elouterHeight, display: 'block' })
.animate({ top: eltop },speed,'swing', callback);
}
}
});
});
호출$.prompt("mes",{show:dropin"}을 사용 하면 슬라이드 를 실현 할 수 있 습 니 다.9.원 각 테두리.a.이
table.jCalendar {
border: 1px solid #000;
background: #aaa;
border-collapse: separate;
border-spacing: 2px;
z-index: 100000000000000000000000000000000;
position:absolute;
}
해결 방법:방법 1:페이지 에서 아래 스타일 을 정의 하기 시작 합 니 다.ui-datepicker{z-index:1200;}dialog 를 호출 할 때 아래 코드 jQuery("\#midialog").dialog({zIndex:900})를 사용 합 니 다.방법 2:[code].datepicker({beforeshow:function(i,e){var z=jQuery(i).closest(".ui-dialog").css("z-index")+4;e.dpDiv.css('z-index', z); } }) 코드 패키지 다운로드 저자:장 레이(zhanglei's Blog)
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
jQuery 전후 예이 기사에서는 jquery after() 및 before() 메소드의 예를 볼 것입니다. before() 메서드는 선택한 요소 앞에 지정된 콘텐츠를 삽입합니다. after() 메서드는 선택한 요소 뒤에 지정된 콘텐츠...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.