我正在尝试将 MainDisplay 变量附加到名为 searchoutputtable 的 id div 元素
<div id="searchoutputtable">
</div>
这是我用来执行此操作的代码:
$.getJSON(AddressAccess+Build,
function(data)
{
//Do a lot of manipulations to MainDisplay Variable
$('#searchoutputtable').append(MainDisplay);
window.location.href = "#resultssearch";
});
现在每次发生这种情况时,我的 javascript 控制台中都会出现以下错误:
Uncaught TypeError: Cannot call method 'not' of undefined
现在,当我 console.log 元素 searchoutputtable 我得到我想要做的事情时,它完美地附加了所有内容,唯一的问题是当我们退出 getJson 函数时,我得到了那个错误并且我的元素根本没有显示。
注意我正在使用 jQueryMobile,是的,我正确加载了库,而且我根本没有在 jQuery 中使用 .not(),所以我不明白他们在上面的错误中指的是什么“不”