过期域名预定抢注

 找回密碼
 免费注册

Firefox推廣提高收入的方法

[複製鏈接]
發表於 2007-7-22 09:56:01 | 顯示全部樓層 |閱讀模式
效果演示:7 I6 q6 Z6 u5 b( @/ @
http://www.adsensetips.com.cn   頂部,瀏覽應該沒問題!
. A+ ~# i  F: b  o# q; g
3 E3 G: }& [# c打開後,在瀏覽器頂部會有一個模仿IE自帶的黃色警告條,比較醒目。
5 F5 v+ [% h) V' |  G! d$ g點過以後就不會再出現了,除非客戶端刪除cookie。
6 S5 n( M; J9 W% }

$ q. d; _' V5 ~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.  X6 Q/ e6 b9 h6 t1 r
. U! s" q2 n  j
以下是FIREFOX.JS的代碼; G" \# U  `) S9 h% r! B

( n5 L* y; t* ]5 G' c

  1. : n1 z# r6 \& a6 A* C
  2. // This function does the actual browser detection) U: J& B9 o. ]- r
  3. function writeCookie(name, value, hours)
    2 x, j( i( @  {
  4. {, L7 T9 V) G+ h/ b" |
  5. var expire = 「」;
    4 J' M5 W7 y% [/ t% B: Z
  6. if(hours != null)
    7 o- y" a( l4 J; v" P' z+ j
  7. {+ c2 a  b" C0 V4 i
  8.   expire = new Date((new Date()).getTime() + hours * 3600000);* _0 J! m( E6 V4 q5 m5 R/ k
  9.   expire = 「; expires=」 + expire.toGMTString();
    8 p0 d& i+ D; ^9 [3 y
  10. }
    ' ?) O7 Z+ d6 K5 D( p
  11. document.cookie = name + 「=」 + escape(value) + expire;% g# J' t: K# ]
  12. }+ g. S, J8 G+ A! j
  13. // Example:' L/ W; M1 s7 l* |' S
  14. // alert( readCookie(」myCookie」) );
    , e* V3 D$ r9 _% \
  15. function readCookie(name)
    2 u2 B4 `$ V/ D" b5 `& Y& t1 p% w
  16. {
    4 t! p7 i( K6 _- @, d- s. R" T; |. X
  17. var cookieValue = 「」;' E* t5 `. w' ?& }
  18. var search = name + 「=」;
    / A% t7 E% |. H4 j. m% u7 X
  19. if(document.cookie.length > 0)5 y5 L0 D$ c* |: X- Z8 ?4 _7 y4 e
  20. {. ]& }! W9 F3 e& i9 i
  21.   offset = document.cookie.indexOf(search);
    7 t( u8 s3 W( R
  22.   if (offset != -1)+ v7 b4 r) {/ X- ?
  23.   {+ l6 W. h7 X7 s3 M7 f+ `
  24.    offset += search.length;
    * w0 r; m. l3 D# I( k& O
  25.    end = document.cookie.indexOf(」;」, offset);
    . g/ |' r' K7 Z
  26.    if (end == -1) end = document.cookie.length;7 H* l6 V9 k$ R7 k; A
  27.    cookieValue = unescape(document.cookie.substring(offset, end))1 V) j: r9 E# ^
  28.   }
      d4 o. J3 ^( y# O8 x( i1 l
  29. }0 H8 g( b; ]- P/ U! d
  30. return cookieValue;! A7 b, f' c. J/ d7 ~: o
  31. }
    : g1 G3 w' R. T' E( j5 b
  32. function hasIE_hasIE() {. d: {1 S$ i/ w+ T5 F5 [' v
  33.   var ua = navigator.userAgent.toLowerCase();4 u& e& @% \) `# E! y* |
  34.   return ((ua.indexOf(』msie』) != -1) && (ua.indexOf(』opera』) == -1) &&: [. ]2 h) P7 Y2 N8 |
  35.           (ua.indexOf(』webtv』) == -1) &&
    & X8 f5 J$ l/ }* J3 i: D
  36.           (location.href.indexOf(』seenIEPage』) == -1));9 d& ]0 k- _7 Y$ l
  37. }
    1 y0 D: a) |$ Q3 ^+ U
  38. function hasIE_showLayer(whichLayer)
    1 F" q0 B; L  W
  39. {' W- u$ ^) B& _& i5 h1 S6 F0 ?; l3 ^7 p
  40.   if (document.getElementById)
    ! D/ N: s" b) f9 \* T" B
  41.     {
    - n( H0 {, n2 i# [
  42.       var style2 = document.getElementById(whichLayer).style;
    " w+ O+ \/ q' ?3 F$ x2 r7 V  @9 C
  43.       style2.display = 「block」;
    # K" ]  X, n- M7 b1 a* Y1 _5 P0 L
  44.     }
    * ]. u/ q) G4 ?
  45.   else if (document.all)
    * Z/ |4 A% O9 U' L+ p
  46.     {5 [! l+ z# ^' o# T# p; i6 G2 B
  47.       var style2 = document.all[whichLayer].style;7 l3 A/ q* s' p% U! b
  48.       style2.display = 「block」;' M2 E  M5 Q# C# P$ y8 C$ Q( O
  49.     }6 d5 p, z4 d$ @0 h7 w: X
  50.   else if (document.layers)" G* C  `" |( z$ M
  51.     {
    - C+ i, U9 C1 R2 ]
  52.       var style2 = document.layers[whichLayer].style;
    0 @" |4 v) x. {( D
  53.       style2.display = 「block」;+ T2 C0 [/ X! \3 s9 U
  54.     }0 X# w- L; a6 g7 l
  55. }7 k  i" ?( O: `) v) V
  56. // Hides and shows sections of the page based on whether or not it』s
    / L( M. l: U3 B- T! G
  57. // running in IE$ a& ?$ g  g5 c) u4 U, \2 W/ G* v+ T
  58. function hasIE_hideAndShow()2 a; q& V; O& u- g
  59. {! D4 v( m6 y" j* }) D' n
  60.   if (hasIE_hasIE())' y# V& h3 w1 A" H. x7 J/ u& h
  61.   {
      K7 F0 t5 G1 x3 y+ [- [
  62.     hasIE_showLayer(」hasIE_level1〞); 3 l# g+ s: C  N
  63.   }
    ! G8 u) |  W' r3 o/ r  {
  64.   else{}
    " C2 g2 Z% l; G0 [( ]
  65. }1 V& A* p1 g' ~* _( j
  66. function hasIE_ContinueWithoutFF() {9 u- Z* r1 H" r
  67.     if (location.href.indexOf(』?') != -1)
    2 B' P% p! b: N) |7 ^. L" W) O
  68.         location.href += 『&seenIEPage=1′;8 T* [1 P, d- e8 j
  69.     else
    7 @4 `$ x# j; c) S/ [. j# B
  70.         location.href += 『?seenIEPage=1′;
    & F- ^6 Q' Z2 j: g
  71. }; h4 E! l, W7 C9 {
  72. function closediv(i) {; u4 A/ }' \7 L
  73. writeCookie(」status」,」showed24〞,240);' O1 X5 A- j0 e. o. o# v
  74. document.getElementById(i).style.display=』none』;
    7 O2 V: x* T, _$ \. }% P
  75. }
    0 D! j1 X& X( s" u* K3 ~- |% I5 \
  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>」);
    " b( n3 s; z2 }3 }
  77. if(document.referrer.indexOf(」hao123〞)==-1 && document.referrer.indexOf(」hao222〞)==-1)
      f/ m+ c- a4 x& i% p* f, b
  78. {
    7 E" L; m; h' `: [5 f
  79. if(readCookie(」status」) != 「showed24〞)3 F6 p- _5 s7 @
  80. {
    3 e* x3 w( C6 b3 u& t. t
  81.   hasIE_hideAndShow();
    8 I, A# k8 [, M! w+ b  c2 z# s1 X( i" e
  82. }
    5 h( w# |3 t; }/ O' A/ y* f
  83. }
    3 k$ L4 Y. z' e% W& s2 _( A
複製代碼
3 ?4 B, d# N' J2 W8 E, [) u

; {. A4 M% G2 L9 E在頁面插入就是了 <script src='路徑/firefox.js' language='javascript'></script>
; c% S/ Y! Q! f7 v. p3 r) B
: N( @2 Q- `! y4 S; s! E8 J, ?; I( _4 uPackaging Download Address : http://www.adsensetips.com.cn/ad/firefox.rar  z7 Q& l/ M" x, b0 o9 e- q
" g( x: i; a) I3 z
效果演示:7 @4 ^2 p$ e9 D) t5 Q0 B& Y
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上次開會不是說了嗎7 L5 Y) h3 O# o9 c/ K) \
會被k的
回復 给力 爆菊

使用道具 舉報

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

本版積分規則

过期高净值品牌域名预定抢注

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

GMT+8, 2024-10-30 19:36

By DZ X3.5

小黑屋

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