gpt4 book ai didi

javascript 代码不能与 x-tmpl 或 x-jQuery-tmpl 模板一起运行

转载 作者:行者123 更新时间:2023-12-01 01:48:50 27 4
gpt4 key购买 nike

我有(xupload)blueimp插件的模板:

<script id="template-upload" type="text/x-tmpl">
{% for (var i=0, file; file=o.files[i]; i++) { %}
<tr class="template-upload fade">
<td class="preview"><span class="fade"></span></td>
<td class="title"><label>Title: <input type="text" name="title" required></label></td>
<td class="name"><span>{%=file.name%}</span></td>
<td class="size"><span>{%=o.formatFileSize(file.size)%}</span></td>
{% if (file.error) { %}
<td class="error" colspan="2"><span class="label label-important">Error</span> {%=file.error%}</td>
{% } else if (o.files.valid && !i) { %}
<td>
<div class="progress progress-success progress-striped active" role="progressbar" aria-valuemin="0" aria-valuemax="100" aria-valuenow="0"><div class="bar" style="width:0%;"></div></div>
</td>
<td class="start">{% if (!o.options.autoUpload) { %}
<button class="btn btn-primary">
<i class="icon-upload icon-white"></i>
<span>Start</span>
</button>
{% } %}</td>
{% } else { %}
<td colspan="2"></td>
{% } %}
<td class="cancel">{% if (!i) { %}
<button class="btn btn-warning">
<i class="icon-ban-circle icon-white"></i>
<span>Cancel</span>
</button>
{% } %}</td>
</tr>
{% } %}
</script>

我正在尝试运行此 JavaScript 代码,它不起作用,但是当我在控制台内运行它以使其工作时,如何在页面加载完成时使其运行

<script type="text/javascript">
jQuery(document).ready(function(){
$("input[type=text]").focus(function(){
alert('some text');
});
});
</script>

就我而言,我正在使用 yii 扩展(select2)此扩展生成 javascript 选择:

<script id="template-upload" type="text/x-jQuery-tmpl">
{% for (var i=0, file; file=o.files[i]; i++) { %}
<tr class="template-upload fade">
<td class="preview">
<span class="fade"></span>
</td>
{% if (file.error) { %}
<td class="error" colspan="2"><span class="label label-important">Error</span> {%=file.error%}</td>
{% } else if (o.files.valid && !i) { %}
<td>
<label><?php echo CHtml::label('Keywords', 'keywords'); ?></label>
<?php
echo CHtml::textField('tags',$selected,array('id'=>'tags'));
$this->widget('ext.select2.ESelect2',array(
'selector'=>'#tags',
'options'=>array(
'tags'=>$tags,
'width'=>'400px;',
),
));
?>
</td>
<td>
<div class="progress progress-success progress-striped active"><div class="bar" style="width:0%;"></div></div>
</td>
<td class="start">{% if (!o.options.autoUpload) { %}
<button class="btn btn-primary">
<i class="icon-upload icon-white"></i>
<span>Start</span>
</button>
{% } %}</td>
{% } else { %}
<td colspan="2"></td>
{% } %}
<td class="cancel">{% if (!i) { %}
<button class="btn btn-warning">
<i class="icon-ban-circle icon-white"></i>
<span>Cancel</span>
</button>
{% } %}</td>
</tr>
{% } %}
</script>

最佳答案

抱歉,存在高级别的异步问题。

MVC封装了两个MVC(什么都可以),

  1. 主要是 DB(模型)、HTML( View )、PHP( Controller )- 服务器端。
  2. 次要的是 JSON/AJAX(模型)、模板( View )、JavaScript( Controller ) - 客户端。

第一个 MVC 还可以,第二个是不好的做法。

  1. 您可以在辅助 View 静态中从主 MVC 调用模型 - 而不是将其从主 MVC 通过辅助 Controller (Javascript)引导到辅助 View !
  2. alert("一些文字");一次(在第一次访问此页面时)绑定(bind)到所有可见的输入字段(模板中的输入未附加)。请理解,此代码不会对稍后渲染的输入文本触发“警报”。

一般来说,将Primary-PHP和Secondary-Template分开就可以成功,所以你必须将信息通过Primary-Controller、Primary-View、Secondary-Model、Secondary-Controller引导到Secondary-View!

我知道这是一项繁重的工作,但这是清理工作的唯一方法。

关于javascript 代码不能与 x-tmpl 或 x-jQuery-tmpl 模板一起运行,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15355941/

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