Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我可以从dojo 1.8 中的窗口类继承吗?我想制作我的自定义窗口,其中包含一些额外的元素。这将非常有用,因为我需要多次重复使用它。
不是特定于 dojo 的,但在 javascript 中,您可以随意向对象添加属性和方法。
// assuming you myWindow is an object myWindow.myProperty = "Test"; myWindow.myFunction = function(arg){ alert("Hello "+arg); };
以这种方式增强对象就是他们所说的猴子修补,甚至可以对本机类型进行。