helpers\BaseHtml jsFile()

jsFile() public static method

Generates a script tag that refers to an external JavaScript file.

See also yii\helpers\Url::to().

public static string jsFile ( $url, $options = [] )
$url string

The URL of the external JavaScript file. This parameter will be processed by yii\helpers\Url::to().

$options array

The tag options in terms of name-value pairs. The following option is specially handled:

  • condition: specifies the conditional comments for IE, e.g., lt IE 9. When this is specified, the generated script tag will be enclosed within the conditional comments. This is mainly useful for supporting old versions of IE browsers.

The rest of the options will be rendered as the attributes of the resulting script tag. The values will be HTML-encoded using encode(). If a value is null, the corresponding attribute will not be rendered. See renderTagAttributes() for details on how attributes are being rendered.

return string

The generated script tag

doc_Yii
2016-10-30 17:05:10
Comments
Leave a Comment

Please login to continue.