Firebug:跟踪哪些脚本或代码行进行了更改

发布于 2024-11-10 15:14:59 字数 52 浏览 2 评论 0原文

是否可以跟踪什么脚本或哪一行代码,例如。设置元素的宽度?

//肯尼思BL

Is it possible to track what script or what line of code, that ex. set a width on an element?

//KennethBL

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

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

发布评论

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

评论(1

偷得浮生 2024-11-17 15:14:59

在 IE 上,您可以使用 onpropertychanged 事件在 width 元素被触发时触发事件。

在 IE 9、Chrome 和 FF 上,您可以使用 DOMAttrModified:

var elm = document.getElementById ("targetElemntId");
if (elm.addEventListener) { // all browsers except IE before version 9
  elm.addEventListener ('DOMAttrModified', checkProperty, false); //FF, Opera, IE
}
if (elm.attachEvent) {  // IE & Opera
  elm.attachEvent ('onpropertychange', checkProperty); // IE


 }


function checkProperty(event) {
   var name = event.attrName ? event.attrName : event.propertyName;
   if(name == "width") {
      alert("width changed");
   }
}

但不知道如何在 chrome 上实现此目的。

On IE you can use the onpropertychanged event to fire an event when the width element is fired.

On IE 9, Chrome and FF you can use the DOMAttrModified:

var elm = document.getElementById ("targetElemntId");
if (elm.addEventListener) { // all browsers except IE before version 9
  elm.addEventListener ('DOMAttrModified', checkProperty, false); //FF, Opera, IE
}
if (elm.attachEvent) {  // IE & Opera
  elm.attachEvent ('onpropertychange', checkProperty); // IE


 }


function checkProperty(event) {
   var name = event.attrName ? event.attrName : event.propertyName;
   if(name == "width") {
      alert("width changed");
   }
}

Don't know how you would achieve this on chrome though.

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