Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我遇到了 jQuery 的问题:
无法调用 null 的方法“html”
代码:
var currenthtml = $('div.welcome').html(); var newhtml = ' Mod Loaded'; var totalhtml = currenthtml+' '+newhtml; $('div.welcome').html(totalhtml);
我第一次尝试加载它,它失败了,然后如果我第二次加载它,它就可以工作。
请检查,
您的 jquery 代码是否是在$(document).ready(function()JQuery 的函数中编写的。
$(document).ready(function()
您也可以尝试在 HTML 末尾编写您的 JQuery 代码。
正如我们看到您的问题一样,我们了解到第一次执行 JQuery 代码时,HTML DOM 没有得到该'div.welcome'部分。
'div.welcome'
希望这对您有所帮助。
谢谢。