Home | 簡體中文 | 繁體中文 | 雜文 | 打賞(Donations) | Github | OSChina 博客 | 雲社區 | 雲棲社區 | Facebook | Linkedin | 知乎專欄 | 視頻教程 | About

第 11 章 Javascript

目錄

11.1. window
11.1.1. window.location
11.2. navigator
11.2.1. userAgent
11.3. document
11.3.1. referrer
11.3.2. domain
11.4. String 字元串處理
11.4.1. JSON.parse
11.4.2. replace 替換
11.5. Date and Time
11.6. from 表單相關事件
11.6.1. onblur
11.7. 禁止複製與滑鼠右鍵
11.8. DOMDocument
11.8.1. createTextNode
11.9. Microsoft.XMLHTTP
11.9.1. Get
11.9.2. POST
11.10. jQuery
11.10.1. Selectors(選擇器)
11.10.2. jQuery 屬性操作
11.10.2.1. is
11.10.2.2. css
11.10.3. 時間觸發
11.10.3.1. setTimeout 定時執行一次
11.10.3.2. setInterval 間隔執行
11.10.4. text
11.10.5. inArray
11.10.6. Ajax
11.10.6.1. Load
11.10.6.2. GET
11.10.6.3. Post
11.10.6.4. jsonp
11.10.6.5. No 'Access-Control-Allow-Origin' header is present on the requested resource.
11.10.6.6. 同步 AJAX
11.10.7. Form 表單處理
11.10.7.1. select
11.10.7.2. input
11.10.8. Jquery 事件
11.10.8.1. click 事件
11.10.9. Garlic.js - 表單數據持久化
11.11. Bootstrap
11.12. ActiveWidgets - WebUI
11.13. Highslide
11.14. JavaScript 代碼混淆
11.14.1. JavaScript Packer
11.15. phantomjs - headless WebKit with JavaScript API
11.16. Javascript MVC Frameworks
11.16.1. Backbone
11.16.2. example

11.1. window

11.1.1. window.location

href

			
var source=window.location.href;
if(source.indexOf('www.example.com')>0){
	... 
}		
			
			

hostname

			
if(window.location.hostname == "www.example.com"){
	...
}			
			
			
			
<span>網址: <script>document.write(window.location.hostname);</script></span>