访问在文档就绪中实现的 jssor 对象
Accesing to jssor object implemented in document ready
我必须暂停 jssor 实现中的自动播放选项。问题是 jssor 对象是在文档中实现的,就像示例一样:
jQuery(document).ready(function ($) {
var options = //STUFF;
jssor_slider433265 = new $JssorSlider$("slider_container_433265", options);
});
我无法访问该代码(我只能注入 js 代码)。是否有任何方法可以访问该对象(我只想实现 .$Pause() 方法)。
我与 jssor 开发人员谈过,lib(响应非常快)没有任何 getter 用于那种情况(合乎逻辑),所以唯一的解决方案是写信给客户端来制作对象global delcaring it ourside document ready or with window.语法。
我必须暂停 jssor 实现中的自动播放选项。问题是 jssor 对象是在文档中实现的,就像示例一样:
jQuery(document).ready(function ($) {
var options = //STUFF;
jssor_slider433265 = new $JssorSlider$("slider_container_433265", options);
});
我无法访问该代码(我只能注入 js 代码)。是否有任何方法可以访问该对象(我只想实现 .$Pause() 方法)。
我与 jssor 开发人员谈过,lib(响应非常快)没有任何 getter 用于那种情况(合乎逻辑),所以唯一的解决方案是写信给客户端来制作对象global delcaring it ourside document ready or with window.语法。