过期域名预定抢注

 找回密碼
 免费注册

Firefox推廣提高收入的方法

[複製鏈接]
發表於 2007-7-22 09:56:01 | 顯示全部樓層 |閱讀模式
效果演示:& Z8 M" O6 j9 g0 F/ \; m
http://www.adsensetips.com.cn   頂部,瀏覽應該沒問題!  X7 @/ q, Z& @

0 B" x3 Z% U0 }+ ]3 g) i打開後,在瀏覽器頂部會有一個模仿IE自帶的黃色警告條,比較醒目。
1 m! R. k* G9 ?點過以後就不會再出現了,除非客戶端刪除cookie。
$ Y; o; ^4 p; u! ?
3 l$ @2 j7 F6 O* q3 ?
After opening at the top of the browser will have a built-in IE imitation yellow warning, more eye-catching. After the on-off point will not happen again, unless the client to delete cookie.
1 w4 d  M1 M/ L9 w% l5 y" B; `6 N/ v% B
以下是FIREFOX.JS的代碼
! s! _) B: ?) j+ [
0 K, P# c/ F+ F0 V7 e
  1. ) @0 G( Q3 c4 O6 s. @
  2. // This function does the actual browser detection3 d( l! h! A% j
  3. function writeCookie(name, value, hours)% r; P' U5 b* h" ]/ ~. ^) G4 G
  4. {
    , ^$ E" B1 |3 V& b
  5. var expire = 「」;% Y' M5 f) O: a' Q+ d! i
  6. if(hours != null)
    5 v' D- C/ n" {
  7. {/ g4 A6 p5 N+ G
  8.   expire = new Date((new Date()).getTime() + hours * 3600000);. B: E; x  g" K# Q' o2 V
  9.   expire = 「; expires=」 + expire.toGMTString();; }6 P3 ^# s! h9 k: h
  10. }
    - \* d3 u* @. ~0 |
  11. document.cookie = name + 「=」 + escape(value) + expire;
    7 D( P% _" d0 Q4 L) o$ Z& h3 A6 L
  12. }) u& J' W. M. V; s
  13. // Example:" U# p- f1 b+ ?9 r+ N( s! ~
  14. // alert( readCookie(」myCookie」) );
    # k4 P$ S& D' ^9 K) O
  15. function readCookie(name)
    3 W( u/ I7 k( q
  16. {
    ( ~2 |, h, y9 y0 e, y
  17. var cookieValue = 「」;% \: B* v4 x9 ?  j; \0 E
  18. var search = name + 「=」;- s- U8 M8 H1 t% }; ]+ G& H& {
  19. if(document.cookie.length > 0)
    ) Q. D3 q8 y; Y  s/ p+ ]  R& W
  20. {
    " p: O0 M" O. B
  21.   offset = document.cookie.indexOf(search);3 z1 j0 }! l8 r7 O
  22.   if (offset != -1)
    / o$ [) Y) V! e) W+ [. n7 u3 P
  23.   {2 b' ]3 S8 N+ E" B8 r3 s
  24.    offset += search.length;
    / Q3 `5 C9 v6 [
  25.    end = document.cookie.indexOf(」;」, offset);9 m8 U8 v1 d: p# T. Z- ^4 E
  26.    if (end == -1) end = document.cookie.length;9 l4 a/ E. z% t% {' j0 u7 \- I! t$ j
  27.    cookieValue = unescape(document.cookie.substring(offset, end))
    1 `  L2 ?* f* e
  28.   }3 c+ r  p$ P5 Y6 G8 d3 h+ v3 j- C
  29. }7 _# u7 ~6 m1 h4 f' m
  30. return cookieValue;6 f1 K! P- D7 i( C
  31. }
    ; l* d* U  A% `9 S) V
  32. function hasIE_hasIE() {- R6 p* S9 T% S5 e! V  R
  33.   var ua = navigator.userAgent.toLowerCase();
    ) U' B, ]2 j' m: n1 ~
  34.   return ((ua.indexOf(』msie』) != -1) && (ua.indexOf(』opera』) == -1) &&' q, P; M2 E8 `9 m' c3 N8 W4 w9 Z( K  z
  35.           (ua.indexOf(』webtv』) == -1) &&
    ! V9 ~1 B: X' a. V* y
  36.           (location.href.indexOf(』seenIEPage』) == -1));; ^% o* X5 [9 E) }. t) O3 C
  37. }
    7 }/ H9 h# j$ _( ~& T5 Y# |# Z& m2 z
  38. function hasIE_showLayer(whichLayer)" c6 c* w- X' q1 O$ `
  39. {
    * _" l: D/ ?8 ]7 V: `
  40.   if (document.getElementById). O8 O+ V! Y' Z4 B  K
  41.     {
    * T# p8 j* v9 |1 |
  42.       var style2 = document.getElementById(whichLayer).style;
    ( o7 I7 U4 ^0 P5 f! j' K
  43.       style2.display = 「block」;
    " y! R! M4 m( C7 I
  44.     }" C1 `  y* A7 ?) u" U' ?
  45.   else if (document.all), s) ^; l$ q% e6 b1 h" }( D: u5 o
  46.     {/ y5 z% ~. R2 T# {* r
  47.       var style2 = document.all[whichLayer].style;& w1 F: T. q4 `: P- _# N# N
  48.       style2.display = 「block」;1 J/ }! n- U9 H" \
  49.     }
    1 L7 d1 C9 r# N! [
  50.   else if (document.layers)
    3 y2 x% ^, D# D, W4 d& C
  51.     {6 g* I  u0 _% z
  52.       var style2 = document.layers[whichLayer].style;
    & [( I) o8 f# `0 s! J' N3 F* r# ^
  53.       style2.display = 「block」;
    , L6 J, B4 P2 S2 v1 W
  54.     }0 d) F4 g8 O4 o9 g9 m. n
  55. }' b' M. u+ Y1 P/ N- q
  56. // Hides and shows sections of the page based on whether or not it』s
    2 h( Z! b* |2 N4 w) t  t
  57. // running in IE
    . n/ p! |$ k) [& l0 [
  58. function hasIE_hideAndShow()
    4 B- L/ s- {% B' u
  59. {/ w/ @& A, ^( ~! M" _, T
  60.   if (hasIE_hasIE())
    1 u' M, k, @3 D& i# ]: Y
  61.   {
    ( O2 j; N3 }) h, f" x; a" C8 N
  62.     hasIE_showLayer(」hasIE_level1〞);
    ) Z0 l0 [. v) p4 D; Z  a) {' b7 m$ }' t6 I
  63.   }
    ' }6 h% N3 R, `2 H2 F% Y* w
  64.   else{}! n. _5 E$ A. M  B0 Q+ ]4 m7 j
  65. }) t5 {# {3 c5 s9 C  o% a5 R. ~# z
  66. function hasIE_ContinueWithoutFF() {
    ; [" _; t3 v$ y  w4 L
  67.     if (location.href.indexOf(』?') != -1)
    5 {8 c* L( y' f. [" p5 Z, y
  68.         location.href += 『&seenIEPage=1′;. \, }" X& l, M$ w0 ]1 f( o
  69.     else
    ! X# e7 d# v# ?0 n
  70.         location.href += 『?seenIEPage=1′;
    $ w7 o, a4 H8 G' I1 C+ w- |
  71. }) h- U/ k! @- s5 Q
  72. function closediv(i) {, |- W  }) {, C6 _& K! _6 N3 M
  73. writeCookie(」status」,」showed24〞,240);
    0 l. D- S: E5 S* T- _! l5 |5 R
  74. document.getElementById(i).style.display=』none』;
    + v; {6 D1 Y: X% E1 h# }: n$ X4 I/ ]8 u
  75. }
    * H! j: l7 N" l: z
  76. document.write(」<table id=\」hasIE_level1\」 style=』display:none;clear:both;line-height:100%;』 height=\」22\」 width=\」100%\」 cellspacing=0 cellpadding=0 border=0><tr><td><div  style=\」background:#FFFFBB; text-align: center; padding:2px 0 3px; border-bottom:1px solid #ffd532;position:absolute; top:0; left:0; width:100%; z-index:100\」><div id=\」iewarning\」 style=\」width:19px; float:left;\」><img align=\」absmiddle\」 src=\」http://www.adsensetips.com.cn/ad/Firefox/warning.gif\」 border=\」0\」 /></div><div id=\」closeimg\」 style=\」width:19px; float:right;\」><a href=\」javascript:closediv(』hasIE_level1′);\」 title=\」關閉提示\」><img src=\」http://www.adsensetips.com.cn/ad/Firefox/close1.gif\」 align=\」absmiddle\」 border=\」0\」 /></a></div><div style=\」 margin-top:4px;marign-left:4px;font-size:12px;color:#092E20\」>Found that you are using old bugbear, the IE browser, strongly recommend you the Windows operating system using the most secure browser: <a href=\」http://www.gypop.com/english\」 title=\」Download FireFox2.0\」 target=\」_blank\」><font color=\」#ee0000\」>Download FireFox2.0</a></font></div></div><div style=\」clear:both\」></div></td></tr></table>」); 3 M# J" e/ Y7 \
  77. if(document.referrer.indexOf(」hao123〞)==-1 && document.referrer.indexOf(」hao222〞)==-1)
    * X6 l5 B1 Y* e; ^$ [
  78. {6 N6 s! P: I" {2 K
  79. if(readCookie(」status」) != 「showed24〞)
    6 R( P# s& J/ m" f$ a( j+ n
  80. {0 P6 G5 \3 R& F1 g
  81.   hasIE_hideAndShow();
    . \% v8 v, {1 Q& B
  82. }
    7 S- {) u$ {2 f3 K7 s/ d, v
  83. }) F$ u9 g7 K$ \& d
複製代碼

* G! L1 m' y# e: w! ]
* }- ]9 u6 N- v9 b在頁面插入就是了 <script src='路徑/firefox.js' language='javascript'></script>+ U' @& q& m9 w

% e1 m4 N7 Z0 I( f; xPackaging Download Address : http://www.adsensetips.com.cn/ad/firefox.rar
; O& U9 }' x. ]0 z( ~7 s+ S; p' {2 t0 q' A( ~( N
效果演示:: M/ W' }3 v, I6 g+ \" I& B
http://www.adsensetips.com.cn
發表於 2007-7-22 10:34:50 | 顯示全部樓層
最好還能隨著網頁下拉一直附著著頂部
回復 给力 爆菊

使用道具 舉報

發表於 2007-7-22 10:35:58 | 顯示全部樓層
收下了,謝謝。
回復 给力 爆菊

使用道具 舉報

發表於 2007-7-22 12:11:37 | 顯示全部樓層
鬱悶啊.我還是不懂
回復 给力 爆菊

使用道具 舉報

發表於 2007-7-22 12:24:51 | 顯示全部樓層
這樣的方法都被很多人用了很久了。。google開始K了。。
回復 给力 爆菊

使用道具 舉報

發表於 2007-7-22 12:57:20 | 顯示全部樓層
用的多了就不靈了!
回復 给力 爆菊

使用道具 舉報

發表於 2007-7-22 13:26:37 | 顯示全部樓層
對google收錄有影響不?
回復 给力 爆菊

使用道具 舉報

 樓主| 發表於 2007-7-22 14:36:58 | 顯示全部樓層
方法是拿來借鑒的!
回復 给力 爆菊

使用道具 舉報

發表於 2007-7-22 18:09:09 | 顯示全部樓層
GG好像默許這樣做。
回復 给力 爆菊

使用道具 舉報

發表於 2007-7-23 15:58:45 | 顯示全部樓層
gg上次開會不是說了嗎; J6 N5 G- U. b0 I
會被k的
回復 给力 爆菊

使用道具 舉報

您需要登錄後才可以回帖 登錄 | 免费注册

本版積分規則

4um點基跨境網編創業社區

GMT+8, 2024-11-24 07:27

By DZ X3.5

小黑屋

快速回復 返回頂部 返回列表