gpt4 book ai didi

javascript - 如何让javascript中的某个脚本不被执行?

转载 作者:行者123 更新时间:2023-12-03 02:11:30 25 4
gpt4 key购买 nike

我的 JavaScript 代码是这样的:

;(function($){

$.ag.hideScrollbar = function (currentWidth) {
...
};

// not executed
//start
$.ag.initMap = function(mapCanvas){
...
};
$.ag.initMapAutocomplete = function () {
...
};
//end

}(jQuery));

我希望不执行 map 脚本

我不想评论脚本。我想添加一个条件让脚本不运行

我该怎么做?

最佳答案

您可以向该函数添加 if 语句

类似于:

;(function($) {

if (element.length > 0) { //or whatever condition you need to test
$.ag.hideScrollbar = function(currentWidth) {
...
};
}

// not executed
//start
$.ag.initMap = function(mapCanvas) {
...
};
$.ag.initMapAutocomplete = function() {
...
};
//end

}(jQuery))

关于javascript - 如何让javascript中的某个脚本不被执行?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49546221/

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