我通过在 Chrome 的控制台中编写一些代码来学习 jQuery,例如向id
DOM 元素添加一个,然后执行 jQuery 函数。
在某些网站(例如Google)上,我得到Uncaught TypeError
了,而在其他网站上,我没有。这是一个例子:
DOM修改:
<input id="test" aria-label="Szukaj w Google" name="btnK" type="submit" jsaction="sf.chk">
安慰:
$("#test").hide()
错误:
VM598:1 Uncaught TypeError: $(...).hide is not a function
at <anonymous>:1:12
其他网站(例如StackOverflow)上的相同流程有效。是什么原因?