標籤:載入 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)傳值接值!