PHP general alert function
WBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWB
Release: 2016-07-25 09:09:15
Original
977 people have browsed it
//Function: General prompt
//Parameters: prompt message, type or URL, window name or function name, delay milliseconds Alert("","function","close2",300);
-
- //Function: General prompt
- //Parameters: prompt message, type or URL, window name or function name, delay in milliseconds Alert("","function","close2",300);
- Function Alert($Str,$Typ="back",$TopWindow="",$Tim=100){
- Echo "<script>".Chr(10);</li>
<li> If(!Empty($Str)){</li>
<li> Echo "alert("Warning:\n\n{$Str}\n\n");".Chr(10);</li>
<li> }</li>
<li>
<li> Echo "function _r_r_(){";</li>
<li> $WinName=(!Empty( $TopWindow))?"top":"self";</li>
<li> Switch (StrToLower($Typ)){</li>
<li> Case "#":</li>
<li> Break;</li>
<li> Case "back":</li>
<li> Echo $WinName.".history.go(- 1);".Chr(10);</li>
<li> Break;</li>
<li> Case "reload":</li>
<li> Echo $WinName.".window.location.reload();".Chr(10);</li>
<li> Break;</li>
<li> Case "close": </li>
<li> Echo "window.opener=null;window.close();".Chr(10);</li>
<li> Break;</li>
<li> Case "function":</li>
<li> Echo "var _T=new Function('return {$TopWindow}')() ;_T();".Chr(10);</li>
<li> Break;</li>
<li> //Die();</li>
<li> Default:</li>
<li> If($Typ!=""){</li>
<li> //Echo "window.{$WinName}.location. href='{$Typ}';";</li>
<li> Echo "window.{$WinName}.location=('{$Typ}');";</li>
<li> }</li>
<li> }</li>
<li>
<li> Echo "}".Chr(10); </li>
<li>
<li> //To prevent Firefox from not executing setTimeout</li>
<li> Echo "if(setTimeout("_r_r_()",".$Tim.")==2){_r_r_();}";</li>
<li> IF($Tim==100 ){</li>
<li> Echo "_r_r_();".Chr(10);</li>
<li> }Else{</li>
<li> Echo "setTimeout("_r_r_()",".$Tim.");".Chr(10);</li>
<li> }</li>
<li> Echo "</script>".Chr(10);
- Exit();
- }
Copy code
|
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Latest Articles by Author
-
2024-10-22 09:46:29
-
2024-10-13 13:53:41
-
2024-10-12 12:15:51
-
2024-10-11 22:47:31
-
2024-10-11 19:36:51
-
2024-10-11 15:50:41
-
2024-10-11 15:07:41
-
2024-10-11 14:21:21
-
2024-10-11 12:59:11
-
2024-10-11 12:17:31