如何使用Firebug清除Web中的输出内容?

时间:2015-07-05 11:14:48

标签: javascript firebug

我正在使用Firebug调试JavaScript程序。只需单击清除即可在其命令编辑器中清除JavaScript代码。

现在,如何使用Firebug清除网站中的输出内容?

Website output and Command Line code

2 个答案:

答案 0 :(得分:1)

除了每次在控制台中运行浏览器时刷新浏览器。

#lang racket
(require minikanren)
(define-syntax succeed (syntax-id-rules () [_ (fresh (t) (== t t))]))

(run* (x)
  (fresh (y)
    (== y 10)
    (conde
     [(== x 1) (== y 10)]
     [(== x 2) (== y 20)]
     [(== x 3) (== y 10)])))    

(define teacupo
  (lambda (x)
    (fresh (result)
      (conde
       ((== 'tea x ) succeed)
       ((== 'cup x ) succeed)))))

(run* (x)
  (teacupo x))

(run* (r)
  (fresh (x y)
    (conde
      ((teacupo x) (== #t y))
      ((== #f x)   (== #t y)))
    (== (cons x (cons y '())) r)))

或者在您进行实验时,您可以扩展文档对象以方便...

document.body.innerHTML = '';

答案 1 :(得分:0)

您可以在Command Line / Command Editor中运行此操作来清除网站:

document.body.innerHTML = "";

或者您可以从HTML panel

中删除输出元素
  1. 右键单击页面上的输出,然后选择使用Firebug检查元素或切换到 HTML 面板并在那里选择它。

    < / LI>
  2. 点击键盘上的 Del 或右键单击该元素,然后从上下文菜单中选择删除元素