標籤:

瀏覽器內多個標籤頁之間的通信

調用localstorge、cookies等本地存儲方式。

方法一:

localstorge在一個標籤頁里被添加、修改或刪除時,都會觸發一個storage事件,通過在另一個標籤頁里監聽storage事件,即可得到localstorge存儲的值,實現不同標籤頁之間的通信。

標籤頁1:

[html]

  1. <input id="name">
  2. <input type="button" id="btn" value="提交">
  3. <script>
  4. $(function(){
  5. $("#btn").click(function(){
  6. var name=$("#name").val();
  7. localStorage.setItem("name", name);
  8. });
  9. });
  10. </script>

標籤頁2:

[html]

  1. <script>
  2. $(function(){
  3. window.addEventListener("storage", function(event){
  4. console.log(event.key + "=" + event.newValue);
  5. });
  6. });
  7. </script>

方法二:

使用cookie+setInterval,將要傳遞的信息存儲在cookie中,每隔一定時間讀取cookie信息,即可隨時獲取要傳遞的信息。

標籤頁1:

[html]

  1. <input type="button" id="btn" value="提交">
  2. <script">
  3. $(function(){
  4. $("#btn").click(function(){
  5. var name=$("#name").val();
  6. document.cookie="name="+name;
  7. });
  8. });
  9. </script>

標籤頁2:

[html]

  1. <script>
  2. $(function(){
  3. function getCookie(key) {
  4. return JSON.parse("{"" + document.cookie.replace(/;s+/gim,"","").replace(/=/gim, "":"") + ""}")[key];
  5. }
  6. setInterval(function(){
  7. console.log("name=" + getCookie("name"));
  8. }, 10000);
  9. });
  10. </script>

推薦閱讀:

為什麼說html5是移動互聯網的趨勢?
HTML5 真能代替 Flash 嗎?
為什麼視頻網站在桌面端依然採用Flash而不是HTML5?
HTML5 中 Geolocation 獲取地理位置的原理是什麼?
html5 上傳本地圖片處理各種問題

TAG:HTML5 |