我購買了WordPress主題並已開始對其進行自定義。主題的一個方面是,我不能爲我的生活找出它爲什麼重定向到一個名爲「未定義」的頁面。使用jQuery與WordPress主題時出現錯誤
sdndaily.com是有問題的網站。
!function (a, b) {
'object' == typeof module && 'object' == typeof module.exports ? module.exports = a.document ? b(a, !0) : function (a) {
if (!a.document) throw new Error('jQuery requires a window with a document');
return b(a)
}
: b(a)
}('undefined' != typeof window ? window : this, function (a, b) {
var c = [
],
d = c.slice,
e = c.concat,
f = c.push,
g = c.indexOf,
h = {
},
i = h.toString,
j = h.hasOwnProperty,
k = {
},
l = '1.11.1',
m = function (a, b) {
return new m.fn.init(a, b)
}
在右上角有一個使用JavaScript來下拉一節,插入你的電子郵件的信封圖標。點擊它後不久,你會被重定向到一個標題爲頁「不確定」和螢火蟲吐出一個錯誤:
Error("jQuery requires a window with a document");
圍繞信封的錨標籤沒有href。它的行爲就像有些js假設屬性會在那裏一樣。因此,未定義的值正在等待一串「未定義」。 – 2014-10-09 00:50:05