我是bootstrap,jquery和客户端的新手。我正在使用我网站上已有的模态插件。一切都很好......直到我尝试使用carousel插件。
$ support.transition在modals.js代码中设置为true。
$(document).ready(function () {
$.support.transition = (function () {
var thisBody = document.body || document.documentElement,
thisStyle = thisBody.style,
support = thisStyle.transition !== undefined || thisStyle.WebkitTransition !== undefined || thisStyle.MozTransition !== undefined || thisStyle.MsTransition !== undefined || thisStyle.OTransition !== undefined
return support
})()
在这个文件中,我注意到有弹出窗口和其他功能的代码(但不是轮播)。我从网站上下载了这个js文件。你应该删除其他不需要的功能吗?如果我有来自同一个comapny的mulitple插件,那么上面的代码应该驻留在哪里?
答案 0 :(得分:3)