如何使用chrome web Inspector查看hover代码

发布于 2024-11-03 03:31:43 字数 110 浏览 1 评论 0原文

使用chromes web Inspector查看代码非常有用。但是,您如何查看按钮的悬停代码?您必须将鼠标悬停在按钮上,因此无法在检查器中使用它(鼠标)。在检查器中是否有任何捷径或其他方法可以完成此任务?

Using chromes web inspector to view code is very useful. But how do you view for example the hover code for a button? You will have to hover the mouse over the button and thus cannot use it (mouse) in the inspector. Are there any shortcuts or other ways to accomplish this in the inspector?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(7

那一片橙海, 2024-11-10 03:31:43

现在您可以看到伪类样式规则并将它们强制应用于元素。

要在“样式”窗格中查看诸如 :hover 之类的规则,请单击右上角的小虚线框按钮。

要强制元素进入 :hover 状态,请右键单击它。

或者,您可以使用“脚本”面板中的“事件侦听器断点”侧边栏窗格,并选择在鼠标悬停处理程序中暂停。

Now you can see both the pseudo-class style rules and force them on elements.

To see the rules like :hover in the Styles pane click the small dotted box button in the top right.

To force an element into :hover state, right click it.

Alternatively, you can use Event Listener Breakpoints sidebar pane in the Scripts panel and select to pause in mouseover handlers.

月竹挽风 2024-11-10 03:31:43

或者,您可以使用“脚本”面板中的“事件侦听器断点”侧边栏窗格,并选择在鼠标悬停处理程序中暂停。

Alternatively, you can use Event Listener Breakpoints sidebar pane in the Scripts panel and select to pause in mouseover handlers.

烟花易冷人易散 2024-11-10 03:31:43

这有点烦人,但您需要右键单击该元素,然后将鼠标悬停在链接上,使用键盘选择“检查元素”链接并按 Enter 键。这应该显示所选元素的悬停伪类的 css。

希望他们在未来的构建中能让这变得更容易一些。

It's a little annoying, but you need to right click on the element, and then, keeping your mouse over the link, use your keyboard select the 'Inspect Element' link and press enter. This should show you the css for the hover pseudo class for the selected element.

Here's hoping they make this a little easier in future builds.

贩梦商人 2024-11-10 03:31:43

在 Chrome 中:

您还可以将鼠标悬停在某个元素上,然后单击 CTRL+SHIFT+C 来检查该元素。

在 Firefox 中:

“在此处输入图像描述”

在 firebug 中:

在此处输入图像描述

来源:https://stackoverflow.com/a/11272205/2165415

In Chrome:

You can also mouseover on an element, and then click CTRL+SHIFT+C to inspect that element.

In Firefox:

enter image description here

in firebug:

enter image description here

source: https://stackoverflow.com/a/11272205/2165415

酒解孤独 2024-11-10 03:31:43

我知道这是一个老问题

我要做的就是在控制台中运行它并快速悬停我需要检查

setTimeout(function() {
  debugger; // this will stop all script on the page
}, 1000);

以释放此断点的元素,然后单击开发工具的 Sources 选项卡中的“resume script...”

I know it is old question

What i do is run this in console and quicly hover the element i need to inspect

setTimeout(function() {
  debugger; // this will stop all script on the page
}, 1000);

to release this breakpoint click "resume script..." in Sources tab of dev tools

胡渣熟男 2024-11-10 03:31:43

我不确定我是否正确理解您的问题,但如果您想查看事件处理程序代码,您只需检查元素并查看元素面板的事件侦听器侧边栏窗格。
另一种方法是按脚本面板中的暂停按钮并将鼠标悬停在元素上。
调试器将在第一个事件处理程序的第一条指令处停止。

I'm not sure that I right understand your question but if you want to see the event handler code you can just inspect the element and look at Event Listeners sidebar pane of Elements Panel.
Another way is just press pause button in Scripts Panel and just hover the element.
The debugger will stop at the first instruction of the first event handler.

禾厶谷欠 2024-11-10 03:31:43

请查看下面的链接以获取答案

请参阅:悬停状态Chrome 开发者工具

Please have a look on below link for answer

See :hover state in Chrome Developer Tools

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文