gpt4 book ai didi

jquery - 当已经在脚本中时,如何使用 jQuery 将脚本写入页面

转载 作者:行者123 更新时间:2023-12-01 07:28:25 24 4
gpt4 key购买 nike

我正在使用 jquery append() 、 html() 等构建一个网页表单,现在我必须将下面所示的脚本写入页面(该脚本被其他一些外部包含脚本调用)我想是通过ID)

将此脚本写入页面或包含它以便外部调用脚本可以找到它的最佳方法是什么?

相关问题:

如果我使用 jquery html() 或类似方法,是否必须去除所有空格?在将大块格式化内容输出到页面时,我似乎总是遇到空格问题。谢谢

<script id="template-upload" type="text/x-jquery-tmpl">
<tr class="template-upload{{if error}} ui-state-error{{/if}}">
<td class="preview"></td>
<td class="name">${name}</td>
<td class="size">${sizef}</td>
{{if error}}
<td class="error" colspan="2">Error:
{{if error === 'maxFileSize'}}File is too big
{{else error === 'minFileSize'}}File is too small
{{else error === 'acceptFileTypes'}}Filetype not allowed
{{else error === 'maxNumberOfFiles'}}Max number of files exceeded
{{else}}${error}
{{/if}}
</td>
{{else}}
<td class="progress"><div></div></td>
<td class="start"><button>Start</button></td>
{{/if}}
<td class="cancel"><button>Cancel</button></td>
</tr>
</script>

最佳答案

我不知道您正在运行的模板引擎,但是您看过.load()吗?我最近在一个大型项目中非常成功地使用了它。 .load() 函数是一个 ajax 快捷方式,它获取结果并将其 append 到 DOM 中的对象。 http://api.jquery.com/load/

使用 .html() 函数插入代码时遇到什么类型的错误?顺便说一句,我假设您了解 FireBug (http://getfirebug.com/)?这将极大地帮助解决这些问题。

谢谢

JMax

关于jquery - 当已经在脚本中时,如何使用 jQuery 将脚本写入页面,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8017384/

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