[YII2] 去除內建js,載入自己的JS,然後ajax(json)傳值接值!

來源:互聯網
上載者:User

標籤:載入   arc   web   pos   blog   傳值   設定   rip   span   

本想用YII2內建的JS,可是用著效果不好,想從新載入,找了好多終於實現啦!還有ajax(json)傳值接值!

首先直接了當的就把YII2內建的js去掉!

把下面代碼加入到/config/main.php檔案‘components‘=>[]裡面,可以禁掉CSS和JS

 1 ‘components‘ => [ 2     ............. 3     //不載入YII2內建JS以及CSS 4         ‘assetManager‘=>[ 5             ‘bundles‘=>[ 6               ‘yii\bootstrap\BootstrapAsset‘=>[ 7                    ‘css‘=>[], 8               ], 9               ‘yii\web\JqueryAsset‘=>[10                    ‘js‘=>[],11                ],12               ‘yii\bootstrap\BootstrapPluginAsset‘=>[13                    ‘js‘=>[]14                ]15            ]16        ],17 ]    

載入自己的就是把JS檔案放在WEB下,然後設定好路徑就OK

 

<script type="text/javascript" src="style/js/jquery-1.7.2.min.js"></script>

 

 

 

ajax傳值接值:

  視圖層檔案:/wiew/index.php


    function search(id){        //alert(id);        $.ajax({            type:‘post‘,            url : "?r=site/ajax",        //json一樣的只是那麼格式變成json格式就OK            //dataType:‘json‘,            data:"id="+id,            success:function(msg){                alert(msg);            }        })

 視圖層檔案:/contollers/SiteController.php

    

1 //搜尋方法2     public function actionAjax(){3         $id=Yii::$app->request->post(‘id‘);4    // return json_encode($id);5         return $id;6     }

 

 

 


[YII2] 去除內建js,載入自己的JS,然後ajax(json)傳值接值!

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.