gpt4 book ai didi

javascript - 在 HTML 文件中定义 jQuery 原型(prototype)的顺序重要吗?

转载 作者:行者123 更新时间:2023-11-28 13:48:15 26 4
gpt4 key购买 nike

我的文件中有以下内容:

<script type="text/javascript">

function refreshGridSetup() {

$.extend($.fn.dataTableExt.oStdClasses, {
sWrapper: 'no-margin last-child'
});

</script>

然后我有:

<script src="/Scripts/admin/jquery.dataTables.js"></script>

我说的第一个代码是扩展 dataTables 的原型(prototype)是否正确?

将其放在定义数据表的代码之前可以吗?

最佳答案

不,因为 $.fn.dataTableExt.oStdClasses 还不存在。您必须首先包含 dataTables 脚本,因为在该脚本运行之前 jQuery 原型(prototype)不会扩展。

通过在 dataTables 创建其命名空间之前运行代码,您将收到如下错误:

Uncaught TypeError: Cannot read property 'oStdClasses' of undefined

编辑:抱歉,我没有注意到 refreshGridSetup 函数(我猜缺少的右大括号只是问题中的拼写错误?)。如果您在包含 dataTables之后之前不调用该函数,则不会遇到任何问题。

关于javascript - 在 HTML 文件中定义 jQuery 原型(prototype)的顺序重要吗?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12622085/

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