火狐web开发清楚缓存_如何使用Firefox的Web开发工具

火狐web开发清楚缓存

火狐web开发清楚缓存

Firefox’s Web Developer menu contains tools for inspecting pages, executing arbitrary JavaScript code, and viewing HTTP requests and other messages. Firefox 10 added an all-new Inspector tool and updated Scratchpad.

Firefox的Web Developer菜单包含用于检查页面,执行任意JavaScript代码以及查看HTTP请求和其他消息的工具。 Firefox 10添加了全新的Inspector工具并更新了Scratchpad。

Firefox’s new web developer features, in combination with awesome web-developer add-ons like Firebug and the Web Developer Toolbar, make Firefox an ideal browser for web developers. All tools are available under Web Developer in Firefox’s menu.

Firefox的新Web开发人员功能,再加上Firebug和Web Developer Toolbar等出色的Web开发人员附加组件,使Firefox成为Web开发人员的理想浏览器。 在Firefox菜单中的Web Developer下可以使用所有工具。

页面检查器 (Page Inspector)

Inspect a specific element by right-clicking it and selecting Inspect (or pressing Q). You can also launch the Inspector from the Web Developer menu.

通过右键单击特定元素并选择“检查” (或按Q )来检查该元素。 您也可以从Web Developer菜单启动Inspector

You’ll see a toolbar at the bottom of the screen, which you can use to control the inspector. Your selected element will be highlighted and other elements on the page will be dimmed.

您将在屏幕底部看到一个工具栏,可用于控制检查器。 您选择的元素将突出显示,页面上的其他元素将变灰。

If you want to choose a new element, click the Inspect button on the toolbar, hover your mouse over the page and click your element. Firefox highlights the element under your cursor.

如果要选择新元素,请单击工具栏上的“检查”按钮,将鼠标悬停在页面上,然后单击您的元素。 Firefox突出显示光标下方的元素。

You can navigate between parent and child elements by clicking the breadcrumbs on the toolbar.

您可以通过单击工具栏上的面包屑在父元素和子元素之间导航。

HTML检查器 (HTML Inspector)

Click the HTML button to view the HTML code of the currently selected element.

单击HTML按钮以查看当前所选元素HTML代码。

The HTML inspector allows you to expand and collapse the HTML tags, making it easy to visualize at a glance. If you want to see the page’s HTML in a flat file, you can select View Page Source from the Web Developer menu.

HTML检查器使您能够展开和折叠HTML标签,从而一目了然。 如果要在平面文件中查看页面HTML,可以从Web Developer菜单中选择View Page Source

CSS检查器 (CSS Inspector)

Click the Style button to see the CSS rules applied to the selected element.

单击样式按钮以查看应用于所选元素CSS规则。

There’s also a CSS properties panel — switch between the two by clicking the Rules and Properties buttons. To help you find specific properties, the properties panel includes a search box.

还有一个CSS属性面板-通过单击“规则”和“属性”按钮在两者之间切换。 为了帮助您找到特定的属性,属性面板包括一个搜索框。

You can edit the element’s CSS on the fly from the Rules panel. Uncheck any of the check boxes to deactivate a rule, click the text to change a rule, or add your own rules to the element at the top of the pane. Here, I’ve added the font-weight: bold; CSS rule, making the element’s text bold.

您可以从“规则”面板中即时编辑元素CSS。 取消选中任何复选框以停用规则,单击文本以更改规则,或将自己的规则添加到窗格顶部的元素。 在这里,我添加了font-weight:粗体; CSS规则,使元素的文本变为粗体。

JavaScript便签本 (JavaScript Scratchpad)

The Scratchpad also saw an update with Firefox 10, and now contains syntax highlighting. You can type in JavaScript code to run on the current page.

Scratchpad还看到了Firefox 10的更新,现在包含语法高亮显示。 您可以键入JavaScript代码以在当前页面上运行。

Once you have, click the Execute menu and select Run. The code runs in the current tab.

完成后,单击“执行”菜单,然后选择“运行”。 该代码在当前选项卡中运行。

网络控制台 (Web Console)

The Web Console replaces the old Error Console, which has been deprecated and will be removed in a future version of Firefox.

Web控制台取代了旧的错误控制台,该控制台已不建议使用,并将在以后的Firefox版本中删除。

The console displays four different types of messages, which you can toggle the visibility of — network requests, CSS error messages, JavaScript error messages and web developer messages.

控制台显示四种不同类型的消息,您可以切换它们的可见性-网络请求,CSS错误消息,JavaScript错误消息和Web开发人员消息。

What’s a web developer message? It’s a message printed to the window.console object. For example, we could run the window.console.log(“Hello World”); JavaScript code in the Scratchpad to print a developer message to the console. Web developers can integrate these messages into their JavaScript code to help with debugging.

什么是Web开发人员消息? 这是一条打印到window.console对象的消息。 例如,我们可以运行window.console.log(“ Hello World”); Scratchpad中JavaScript代码可将开发人员消息打印到控制台。 Web开发人员可以将这些消息集成到他们JavaScript代码中,以帮助进行调试。

Refresh the page and you’ll see the generated network requests and other messages.

刷新页面,您将看到生成的网络请求和其他消息。

Use the search box to filter the messages; click a request if you want to see more details.

使用搜索框过滤邮件; 如果您想查看更多详细信息,请单击一个请求。

As of Firefox 10, the Web Console can work in tandem with the Page Inspector. The $0 variable represents the currently selected object in the inspector. So, for example, if you wanted to hide the currently selected object, you could run $0.style.display=”none” in the console.

从Firefox 10开始,Web控制台可以与Page Inspector协同工作。 $ 0变量表示检查器中当前选择的对象。 因此,例如,如果要隐藏当前选择的对象,则可以在控制台中运行$ 0.style.display =” none”

If you’re interested in learning more about using the console and its built-in functions, check out the Web Console page on Mozilla’s Developer Network website.

如果您想了解更多有关使用控制台及其内置功能的信息,请查看Mozilla开发人员网络网站上的Web控制台页面。

获取更多工具 (Get More Tools)

The Get More Tools option takes you to the Web Developer’s Toolbox add-on collection on the Mozilla Add-Ons website. It contains some of the best add-ons for web developers, including Firebug and the Web Developer Toolbar.

获取更多工具”选项将带您进入Mozilla附加组件网站上的Web开发人员工具箱附加组件集合。 它包含一些针对Web开发人员的最佳插件,包括Firebug和Web Developer工具栏。



If you’ve been using Firefox for a few years, you may remember the DOM Inspector. Firefox’s integrated developer tools have come a long way since then.

如果您已经使用Firefox几年了,您可能还记得DOM Inspector。 从那时起,Firefox的集成开发人员工具已经走了很长一段路。

翻译自: https://www.howtogeek.com/105320/how-to-use-firefoxs-web-developer-tools/

火狐web开发清楚缓存

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/279114.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

Java基类共同属性设置_多选择基类的访问属性-Java初学笔记

多选择基类的访问属性你现在知道在定义类的访间属性时可用的选择项,你希望使用这些类定义子类。你知道在类继承上这些属性所具有的效果,但是你如何决定到底应该使用哪一个呢?这里没有死板和现成的规则,你选择的访问属性取决于在将来你想用类…

IT:如何在Windows Server 2008 R2上安装Hyper-V虚拟化

Windows Server 2008 R2 and later releases of the product ship with a virtualization platform called Hyper-V, which works quite well since it’s built into Windows. Today we’re going to show you how to install it. Windows Server 2008 R2和更高版本的产品附带…

FineReport单行与数据库交互的方法

1. 问题描述 我们在做一张报表填报的时候经常会遇到需要在一行进行添加动作,将该行数据直接与数据库交互,执行存储过程过程。我们可以通过每一行增加帆软“插入”按钮实现插入动作,并且在控件事件中增加和数据库的交互,但当事件…

java cas volatile_每日一个知识点:Volatile 和 CAS 的弊端之总线风暴

每日一个知识点系列的目的是针对某一个知识点进行概括性总结,可在一分钟内完成知识点的阅读理解,此处不涉及详细的原理性解读。一、什么是总线风暴总线风暴,听着真是一个帅气的词语,但如果发生在你的系统上那就不是很美丽了&#…

SqlServer之代码块相关

转载必需注明出处:http://www.ncloud.hk/%E6%8A%80%E6%9C%AF%E5%88%86%E4%BA%AB/sqlserver-codeblock/ 一、go语句 Go语句是SqlServer中用来表示当前代码块结束提交并确认结果的语句。 Go语句不能和其他Sql命令卸载同一行上! 定义的局部变量作用域局限在定义它的代码…

010 使用list和tuple

list Python内置的一种数据类型是列表:list。list是一种有序的集合,可以随时添加和删除其中的元素。 比如,列出班里所有同学的名字,就可以用一个list表示: >>> classmates [Michael, Bob, Tracy] >>&g…

IT:如何使用Server 2008 R2上的远程桌面服务设置自己的终端服务器

In today’s IT learning article, we are going to take a look at installing Terminal Services, otherwise known as Remote Desktop Services, on a Server 2008 R2 machine. 在今天的IT学习文章中,我们将介绍在Server 2008 R2计算机上安装终端服务(也称为远程…

Win10 jdk的安装以及环境变量的配置,及需要注意的坑

此篇文章献给自己,希望下次长点记性 最近本人终于有时间开始学习appium,并且开始在电脑上配置环境,第一步就是在我那刚装的Win10 系统上安装jdk,过程并不顺利,由于之前都是用的win7,几乎都是一路的下一步&a…

Jenkins配置Findbugs做源代码安全扫描

2019独角兽企业重金招聘Python工程师标准>>> 此内容目标阅读用户:运维人员 配置步骤如下: Jenkins安装Findbugs插件 Jenkins系统管理 → 管理插件 → (可选插件)找到Findbugs及其依赖插件全部安装成功,Jenkins重启,即可…

如何从USB运行Windows 8 Developer Preview

Running Windows 8 from a USB should not be confused with installing Windows on a USB drive–in this case, instead of installing it on the drive, we’re just running it straight from the portable drive. Here’s how to do it. 从USB运行Windows 8不应与在USB驱动…

火狐查cookie_Firefox 65默认会阻止跟踪Cookie

火狐查cookieMozilla today released Firefox 63, which includes an experimental option to block third-party tracking cookies, protecting against cross-site tracking. You can test this out today, but Mozilla wants to enable it for everyone by default in Firef…

chromebook刷机_如何将iTunes音乐移至Chromebook

chromebook刷机If you switch between platforms a lot, you know it’s a hassle to move your stuff around. Fortunately, music files don’t have any sort of DRM tying them to a specific platform the way that movies do, so you can copy and paste your library ar…

阿里巴巴Java开发手册终极版

2019独角兽企业重金招聘Python工程师标准>>> 一、编程规约: (一)命名风格 1. 【强制】 代码中的命名均不能以下划线或美元符号开始,也不能以下划线或美元符号结束。 反例: _name / __name / $Object / name_ / name$ / Object$ 2.…

ios6.1.6可用微信_这是iOS 12.1的新增功能,今天可用

ios6.1.6可用微信While iOS 12 is still fairly fresh, the first point release will be rolling out starting today. This brings a handful of new features, like Group Facetime, dual SIM support, camera improvements, new emoji, and more. 尽管iOS 12仍然相当新鲜&a…

esp32 cam工作电流_我如何在家工作:Cam的生产力之痛

esp32 cam工作电流Telecommuting is becoming more and more common these days, with many tech writers (myself included) working from home on a full-time basis. I get asked about how I work fairly often, so here’s the skinny. 如今,远程办公变得越来越…

NUMPY数据集练习 ----------SKLEARN类

123456<br><br># 1. 安装scipy&#xff0c;numpy&#xff0c;sklearn包import numpyfrom sklearn.datasets import load_iris# 2. 从sklearn包自带的数据集中读出鸢尾花数据集dataprint(data.data)123# 3.查看data类型&#xff0c;包含哪些数据data load_iris()pr…

java 伪异步 netty,大话netty系列之--伪异步BIO

生意规模扩大话说&#xff0c;老王和大明的生意越来越好&#xff0c;这就需要两个人增强业务往来&#xff0c;由于天南地北&#xff0c;两个人只能每次运输都需要雇一个人去运货(new 一个线程)&#xff0c;一个月下来&#xff0c;两人一算&#xff0c;人力成本太大了&#xff0…

如何使用Windows搜索在任何文件中搜索文本

Many of us rely on Windows Search to find files and launch programs, but searching for text within files is limited to specific file types by default. Here’s how you can expand your search to include other text-based files. 我们中的许多人都依赖Windows搜索…

php算法求出兔子数列,PHP算法:斐波那契数列的N种算法

前言前段时间&#xff0c;遇到优化计算斐波那契数列的常规递归方法&#xff0c;但是一时间并没有及时想到很好的方法&#xff0c;所以后面查找了相关资料&#xff0c;总结了多种计算解法&#xff0c;所以分享出来&#xff0c;和大家一起交流学习。斐波那契数是什么斐波那契数列…

Linux文件和目录权限:chmod、更改所有者和所属组:chown,umask命令,隐藏权限:lsattr/chattr...

文件和目录权限chmod&#xff1a; 我们使用ls -l可以看到文件的详细信息&#xff0c;也知道第一列的第一个符号(字母)表示文件的类型&#xff0c;在表示文件的类型符号的后面的九个符号则表示的是文件的权限&#xff0c;这些权限和文件的所有者和所属组都有关系&#xff1a; 文…