> 웹 프론트엔드 > JS 튜토리얼 > jQuery 모바일 라이브러리를 사용하여 절대 및 상대 URL 주소를 감지하는 방법

jQuery 모바일 라이브러리를 사용하여 절대 및 상대 URL 주소를 감지하는 방법

PHP中文网
풀어 주다: 2017-03-31 17:17:26
원래의
2255명이 탐색했습니다.

이 글에서는 주로 jQuery 모바일 라이브러리의 사용법을 소개합니다. 절대 주소와 상대 주소를 모니터링하는 방법은 각각 isAbsoluteUrl() 및 isRelativeUrl() 메서드를 사용하는 것입니다. 필요한 친구는

path.isAbsoluteUrl()을 참조하여 절대 URL을 감지할 수 있습니다.

1

jQuery.mobile.path.isAbsoluteUrl(url)

로그인 후 복사

URL이 절대인 경우 유틸리티 메서드입니다. 이 함수 는 URL이 절대인 경우 부울 값을 반환하고, 그렇지 않으면 >path.isRelativeUrl() 상대 URL을 확인합니다. <… URL의 절대 주소와 상대 주소를 감지합니다. 자세한 내용은 PHP 중국어 웹사이트(www.php.cn)를 참고하세요.

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

19

20

21

22

23

24

25

26

27

28

29

30

31

32

33

34

35

36

37

38

39

40

41

42

43

44

<!doctype html>

<html lang="en">

<head>

 <meta charset="utf-8">

 <meta name="viewport" content="width=device-width, initial-scale=1">

 <title>jQuery.mobile.path.isAbsoluteUrl demo</title>

 <link rel="stylesheet" href="http://code.jquery.com/mobile/1.3.0/jquery.mobile-1.3.0.min.css">

 <script src="http://code.jquery.com/jquery-1.9.1.min.js"></script>

 <!-- The script below can be omitted -->

 <script src="/resources/turnOffPushState.js"></script>

 <script src="http://code.jquery.com/mobile/1.3.0/jquery.mobile-1.3.0.min.js"></script>

 <style>

 #myResult{

 border: 1px solid;

 border-color: #108040;

 padding: 10px;

 }

 </style>

</head>

<body>

  

<p data-role="page">

  

 <p data-role="content">

 <input type="button" value="http://foo.com/a/file.html" id="button1" class="myButton" data-inline="true" />

 <input type="button" value="//foo.com/a/file.html" id="button2" class="myButton" data-inline="true" />

 <input type="button" value="/a/file.html" id="button3" class="myButton" data-inline="true" />

 <input type="button" value="file.html" id="button4" class="myButton" data-inline="true" />

 <input type="button" value="?a=1&b=2" id="button5" class="myButton" data-inline="true" />

 <input type="button" value="#foo" id="button6" class="myButton" data-inline="true" />

 <p id="myResult">The result will be displayed here</p>

 </p>

</p>

<script>

$(document).ready(function() {

 $( ".myButton" ).on( "click", function() {

  var isAbs = $.mobile.path.isAbsoluteUrl( $( this ).attr( "value" ) );

 $( "#myResult" ).html( String( isAbs ) );

 })

});

</script>

  

</body>

</html>

로그인 후 복사
관련 라벨:
원천:php.cn
본 웹사이트의 성명
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.
최신 이슈
인기 튜토리얼
더>
최신 다운로드
더>
웹 효과
웹사이트 소스 코드
웹사이트 자료
프론트엔드 템플릿