gpt4 book ai didi

yii2 在 View 中注册 js 代码

转载 作者:行者123 更新时间:2023-12-03 21:19:53 25 4
gpt4 key购买 nike

在 yii2 View 中注册 js 代码的最佳方法是什么?

1

<?php
$this->registerJs(
'$("document").ready(function(){ alert("hi"); });'
);
?>

2
<?php 
$this->registerJs('alert("hi");', View::POS_READY);
?>

3
<?php 
$script = "function test() { alert('hi');}";
$this->registerJs($script, View::POS_END, 'my-options');
?>

最佳答案

Yii2,在 View 中编写代码

<h2>Content</h2>
<?php
$script = <<< JS
alert("Hi");
JS;
$this->registerJs($script);
?>

关于yii2 在 View 中注册 js 代码,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36639326/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com