注册yii2 js文件

http://www.yiiframework.com/doc-2.0/guide-output-client-scripts.html

1. 注册js内容

<script> <!-- 编写script标签是为了编辑器识别js代码,可以省略 -->
<?php $this->beginBlock('captcha_reload') ?>
 $(document).ready(function(){$("#signupform-verifycode-image").click();});
<?php $this->endBlock(); ?>
</script>

<?php $this->registerJs($this->blocks['captcha_reload'],\yii\web\View::POS_LOAD);//将编写的js代码注册到页面底部 ?>


2.注册js文件(第三方js)

<?php $this->registerJsFile('http://www.baidu/js/11.js',['depends' => [\yii\web\JqueryAsset::className()]]);

3.系统内加入js文件:

frontend\assets\AppAsset:

public $js = [
		'gogoog/ss.js'
    ];

就会加入js文件

你可能感兴趣的:(注册yii2 js文件)