registerJsFile() public method
Registers a JS file.
public void registerJsFile ( $url, $options = [], $key = null ) | ||
---|---|---|
$url | string |
The JS file to be registered. |
$options | array |
The HTML attributes for the script tag. The following options are specially handled and are not treated as HTML attributes:
Please refer to yii\helpers\Html::jsFile() for other supported options. |
$key | string |
The key that identifies the JS script file. If null, it will use $url as the key. If two JS files are registered with the same key at the same position, the latter will overwrite the former. Note that position option takes precedence, thus files registered with the same key, but different position option will not override each other. |
Please login to continue.