我想端口一些代碼從JS到Haxe。是否可以重寫Haxe中的js.html.Window類的函數?
的代碼覆蓋Window.getComputedStyle到workarround一個Firefox的問題(Bugzilla link):
window.oldGetComputedStyle = window .getComputedStyle;
window.getComputedStyle = function (element, pseudoElt) {
var t = window.oldGetComputedStyle(element, pseudoElt);
if (t === null) {
return {};
} else{
return t;
}
};
我該如何解決這個問題?
當我想,我得到了以下錯誤:
Cannot rebind this method : please use 'dynamic' before method declaration
問題你問需要澄清。 「我可以使用Haxe覆蓋這個功能嗎?」是或不是。改變你的問題,要求澄清你的錯誤將有助於你獲得更好的信息。 – Nathan