php簡單封裝了一些常用JS操作

來源:互聯網
上載者:User

在web編程中大家應該會經常用到一些常用js操作,例如 alert(),通常是遇到了再寫,受公司的啟發,我自己簡單寫了個類來自動產生這些js,目的就是為了方便,一個小玩意,新手們也許會喜歡^_^
[php]
<?php
/*
*頁面:makeJs.class.php
*功能:封裝常用的JS代碼,直接調用,方便操作
*作者:輝老大
*建立時間:2007-01-27
*/
class makeJs
{
private $jsStartChar = '<scrīpt type="text/javascrīpt">';//定義js起始標記
private $jsEndChar = '</scrīpt>';//定義js結束標記

/*
*函數名稱:jsAlert
*函數功能:彈出JS提示框
*參數:$message 要在彈出提示框中顯示的文字 $url 點擊後跳轉的路徑,為空白則不跳轉
*使用方法:
*$js = new makeJs();//以下介紹使用方法省略此句
*$js->jsAlert(顯示的文字,'跳轉頁面URL');//彈出對話方塊,點擊確定後跳轉到php.php頁面
*$js->jsAlert(顯示的文字,'');//彈出對話方塊,點擊確定後沒有跳轉
*/
public function jsAlert($message,$url){
echo $this->jsStartChar;
if($url==''){
echo 'alert' . '("' . $message . '");';
echo $this->jsEndChar;
}
else{
echo 'alert' . '("' . $message . '");';
echo $this->jsEndChar;
echo '<meta http-equiv="refresh" c>';
}
}

/*
*函數名稱:jsConfirm
*函數功能:彈出JS提示框,帶確定/取消
*參數:$message 要在彈出提示框中顯示的文字
*使用方法:$js->jsConfirm('顯示的文字');
*/
public function jsConfirm($message){
echo $this->jsStartChar;
if($url==''){
echo 'confirm' . '("' . $message . '");';
echo $this->jsEndChar;
}
}

/*
*函數名稱:jsOpenWin
*函數功能:彈出新視窗
*參數:$url 路徑 $name 視窗名 $height 視窗高度 $width 視窗寬度
*使用方法:
*$url = '頁面的URL';
*$js->jsOpenWin($url,視窗名,視窗高度,視窗寬度);
*/
public function jsOpenWin($url,$name,$height,$width){
echo $this->jsStartChar;
echo 'window.open'.'("'.$url.'","'.$name.'","'.$height.'","'.$width.'");';
echo $this->jsEndChar;
}

/*
*函數名稱:jsAddscrīpt
*函數功能:自訂JS
*參數:$scrīpt
*使用方法:
*$scrīpt = '定義的js語句';
*例如:$scrīpt = 'window.location=(\'php.php\')';
*$js->jsAddscrīpt($scrīpt);
*/
public function jsAddscrīpt($scrīpt){
echo $this->jsStartChar;
echo $scrīpt;
echo $this->jsEndChar;
}
}
?>
[/php]

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.