gpt4 book ai didi

jquery - 对象 # 没有方法 'show'

转载 作者:行者123 更新时间:2023-12-01 06:35:10 26 4
gpt4 key购买 nike

在控制台中:

$('#rhscol') //gives the result below: 

<div id=​"rhscol" style=​"border:​ 1px solid red;​">​
Hello world!
</div>​

但是在同一个控制台中:

$('#rhscol').show(); //Gives the result below: 
TypeError: Object #<HTMLDivElement> has no method 'show'

有人可以向我解释一下我缺少什么吗?谢谢

最佳答案

这是 document.querySelector 的 Chrome 控制台快捷方式。

以下是开发工具源代码中的代码:

 $: function (selector, start)
{
if (this._canQuerySelectorOnNode(start))
return start.querySelector(selector);

return inspectedWindow.document.querySelector(selector); // <- here
},

上面的代码使用了 jQuery。如果你想使用它,你需要在页面中包含 jQuery。

关于jquery - 对象 #<HTMLDivElement> 没有方法 'show',我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18126285/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com