2014-10-11 30 views
1

我的網站使用Font Awesome在Off-Rode模式打開時未在Opera Mobile中顯示,因此我想提醒用戶應該關閉它或使用不同的瀏覽器。提醒Opera用戶更改設置以支持Font Awesome

你能告訴我我做錯了什麼,或者如果你知道更好的方法來提醒?

if(window.opera) { 
    if (!document.cookie.match(/(?:^|; *)alert_shown=1/)) { 
     document.cookie = "alert_shown=1;max-age=" + 60 * 60 * 24; 
    } 
    alert("Turn off Off-Road mode, please"); 
} 

回答

1

您需要將警報放入第二個if。否則,無論Cookie如何,它都會一直顯示。

if(window.opera) { 
    if (!document.cookie.match(/(?:^|; *)alert_shown=1/)) { 
     document.cookie = "alert_shown=1;max-age=" + 60 * 60 * 24; 
     alert("Turn off Off-Road mode, please"); 
    } 
} 
+0

非常感謝。 – sidlo 2014-10-11 01:37:25

-1

將引號內的字符串括起來。

alert("some string here"); 
alert('more strings here'); 
0

@Barmar是對的,雖然我更喜歡這個。它是整潔的!

if (window.opera && !document.cookie.match(/(?:^|; *)alert_shown=1/)) { 
    document.cookie = "alert_shown=1;max-age=" + 60 * 60 * 24; 
    alert("Turn off Off-Road mode, please"); 
} 
+0

謝謝你 – sidlo 2014-10-11 01:39:24