gpt4 book ai didi

javascript - 在 twig 模板加载后执行 javascript

转载 作者:行者123 更新时间:2023-11-29 16:23:06 24 4
gpt4 key购买 nike

我正在使用 Symfony 2,我需要在加载以下 twig 模板后立即执行 javascript:

<div data-role="dialog">
<div data-role="header">
<h1>Input your Username and Password</h1>
</div>
<div data-role="content">
<div data-role="fieldcontain" class="ui-hide-label">
<label for="username">Username:</label>
<input type="text" name="username" id="username" value="" placeholder="Username"/>
</div>
<div data-role="fieldcontain" class="ui-hide-label">
<label for="password">Password:</label>
<input type="password" name="password" id="password" value="" placeholder="password" />
</div>
<div data-role="controlgroup" data-type="horizontal" align="center">
<input type="button" value="Login"/>
<a data-rel="back" data-role="button"/>Cancel</a>
</div>
</div>
</div>

最佳答案

在模板底部添加

<script type="text/javascript">
window.onload = function() {
//do your stuff here
}
</script>

或者如果您使用的是 jQuery..

<script type="text/javascript">
$(function() {
//do your stuff here
});
</script>

关于javascript - 在 twig 模板加载后执行 javascript,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8925520/

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