gpt4 book ai didi

javascript - CMS Bitrix 不加载脚本

转载 作者:行者123 更新时间:2023-11-28 00:46:45 25 4
gpt4 key购买 nike

在控制台中写入:

uncaught reference error.

请告诉我,错误在哪里?

<script>
$('select').selectric({
maxHeight: 200
});
$.noConflict();
</script>

最佳答案

我认为这段代码可以避免错误:

<script>
$.noConflict();
$(function () {
"use strict";

if (typeof($.selectric) === "function") {
$("select").selectric({
maxHeight: 200
});
}
});
</script>

关于javascript - CMS Bitrix 不加载脚本,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53488381/

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