瀏覽器內多個標籤頁之間的通信
04-24
調用localstorge、cookies等本地存儲方式。
方法一:
localstorge在一個標籤頁里被添加、修改或刪除時,都會觸發一個storage事件,通過在另一個標籤頁里監聽storage事件,即可得到localstorge存儲的值,實現不同標籤頁之間的通信。
標籤頁1:
[html]
- <input id="name">
- <input type="button" id="btn" value="提交">
- <script>
- $(function(){
- $("#btn").click(function(){
- var name=$("#name").val();
- localStorage.setItem("name", name);
- });
- });
- </script>
標籤頁2:
[html]
- <script>
- $(function(){
- window.addEventListener("storage", function(event){
- console.log(event.key + "=" + event.newValue);
- });
- });
- </script>
方法二:
使用cookie+setInterval,將要傳遞的信息存儲在cookie中,每隔一定時間讀取cookie信息,即可隨時獲取要傳遞的信息。
標籤頁1:
[html]
- <input type="button" id="btn" value="提交">
- <script">
- $(function(){
- $("#btn").click(function(){
- var name=$("#name").val();
- document.cookie="name="+name;
- });
- });
- </script>
標籤頁2:
[html]
- <script>
- $(function(){
- function getCookie(key) {
- return JSON.parse("{"" + document.cookie.replace(/;s+/gim,"","").replace(/=/gim, "":"") + ""}")[key];
- }
- setInterval(function(){
- console.log("name=" + getCookie("name"));
- }, 10000);
- });
- </script>
推薦閱讀:
※為什麼說html5是移動互聯網的趨勢?
※HTML5 真能代替 Flash 嗎?
※為什麼視頻網站在桌面端依然採用Flash而不是HTML5?
※HTML5 中 Geolocation 獲取地理位置的原理是什麼?
※html5 上傳本地圖片處理各種問題
TAG:HTML5 |