0
我正在嘗試從mqGenie使用mqAdjust。我使用的是螢火蟲,它調用函數,並在函數被定義的地方點擊斷點,它給了我一個錯誤,指出函數沒有被定義。請幫助:mqAdjust沒有定義
腳本調用
mqGenie
; (function (window, document) {
document.addEventListener('DOMContentLoaded', function() {
window.mqAdjust = function (mediaQuery) {
if (!mqGenie.adjusted)
return mediaQuery;
var mq = mediaQuery.replace(/\d+px/gi, function (c) {
return parseInt(c, 10) + mqGenie.width + 'px';
});
mq = mq.replace(/\d.+?em/gi, function (c) {
return ((parseFloat(c) * mqGenie.fontSize) + mqGenie.width)/mqGenie.fontSize + 'em';
});
return mq;
};
});
})(window, document);
我使用的是最新版本的JQuery v.1.10.2的 我使用enquire.js 我使用mq.genie.js
鏈接到mqGenie和Inquire上的文檔
https://github.com/stowball/mqGenie
http://wicky.nillia.ms/enquire.js/