突出显示 html 元素
如何使用 javascript 突出显示 html 元素,以检查链接到该元素的 html 和 css 选择器。突出显示可能只是边框或背景的更改(因此不会破坏布局)以及显示 html 元素和连接到该元素的 css 选择器的工具提示。
How can highlight html elements, with javascript, for inspection of html and css selectors linked to that element. The highlighting could be just a change of borders or background (so it doesnt break the layout) and a tool tip revealing the html element and css selectors conected to that element.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
你可以这样做:
我会使用 Firebug (FF) 或 Console (Chrome) 来检查元素。
You could do something like this:
I'd use Firebug (FF) or Console (Chrome) to inspect elements though.
如果我理解正确的话,听起来您只需要使用类似 Firebug for Firefox 或开发者工具 (F12) 的东西对于IE。每个浏览器都有它们。
它们可以让你突出显示任何内容并使用任何 CSS 选择器。 Web 开发人员绝对必备的工具。
If I understand you correctly, it sounds like you just need to be using something like Firebug for Firefox or Developer tools (F12) for IE. Every browser has them.
They let you highlight anything and play around with any css selectors. Absolute must tools for the web developer.
您是否考虑过使用像 Firebug 这样的工具?这做得非常出色,显示页面的源代码并在鼠标悬停时突出显示元素。此外,在三大浏览器(Chrome、FF、IE)的最新版本中,都有一个内置的检查器。在 FF 10 中,右键单击任何内容,然后单击“检查元素”。在 Chrome 中,过程是相同的。在 IE 9 中,按 F12,然后按 Ctrl+B 并单击所需的元素。
Have you considered using a tool like Firebug? This does an excellent job, showing the source of the page and highlighting elements on mouseover. Also, in recent versions of the three major browsers (Chrome, FF, IE) there is a built-in inspector. In FF 10, right click anything and click Inspect Element. In Chrome, the process is the same. In IE 9, press F12, then Ctrl+B and click the desired element.
如果你使用google chrome,可以在查看/开发者/开发者工具中启用开发者工具。
选择此菜单时,浏览器底部会出现一个带有菜单的框架(此处您应该单击“元素”按钮)。
在此菜单下,您将看到文档的来源。
当鼠标悬停在浏览器中的某些标签(即:)上时,该元素将突出显示,并且您将能够看到突出显示标签的属性。
If you use google chrome, you can enable developer tools in View / Developer / Developer Tools.
When choosing this menu, on the bottom part of the browser will apear a frame with a menu, (here you should click the Elements button).
Under this menu you'll see the source of your document.
When hovering on certain tags (ie: ) in the browser the element will be highlighted, and you'll be able to see properties of the highlighted tag.