Javascript - getOwnPropertyDescriptor & DOM 原型元素上的 DefineProperty

发布于 2024-11-27 19:58:06 字数 667 浏览 1 评论 0原文

我试图捕获任何 IMG 标签的“src”属性上的读/写操作。为此,我尝试使用 getOwnPropertyDescriptor & HTMLImageElement 对象上的 DefineProperty 函数(因为我想避免为每个 img 定义它们) 我对 getOwnPropertyDescriptor 的看法:

var proto = Object.getPrototypeOf(HTMLImageElement);
var own = Object.getOwnPropertyDescriptor(proto, "src");
// own is undefined in IE10/FF8/Chrome15

关于上面 proto 元素上的 DefineProperty,我看到 getter/setter 函数仅在 Chrome 中运行,但不是在我期望的时候运行,而且 getter 函数中的“this”是 DOM 的原型窗户。我的测试代码可以在 http://jsfiddle.net/yoav/tUekJ/

找到getOwnPropertyDescriptor 在这种情况下工作吗?我是否应该期望当 JS 访问“src”属性时触发 getter/setter 函数?

谢谢!

I am trying to capture read/write operations on any IMG tag's "src" attribute. For that purpose I was trying to use the getOwnPropertyDescriptor & defineProperty functions on the HTMLImageElement object (since I'd like to avoid defining them for each img)
What I saw regarding getOwnPropertyDescriptor:

var proto = Object.getPrototypeOf(HTMLImageElement);
var own = Object.getOwnPropertyDescriptor(proto, "src");
// own is undefined in IE10/FF8/Chrome15

Regarding defineProperty on the proto element above, I saw that the getter/setter functions only run in Chrome, but not when I would expect them to and that "this" inside the getter function is the prototype of the DOM window. My test code for this can be found at http://jsfiddle.net/yoav/tUekJ/

Should getOwnPropertyDescriptor work in this case? Should I expect the getter/setter functions to be triggered when JS accesses the "src" attribute?

Thanks!

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

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

发布评论

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

评论(1

野稚 2024-12-04 19:58:06

src是一个实例属性,而不是原型属性。使用类似于 msdn 示例的内容:

    var own = Object.getOwnPropertyDescriptor(HTMLImageElement.prototype, "setAttribute");

参考

srcis a instance property, not a prototype property. Use something like the msdn example:

    var own = Object.getOwnPropertyDescriptor(HTMLImageElement.prototype, "setAttribute");

References

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