首頁  >  文章  >  web前端  >  我們能透過腳本刪除HTML5 Canvas標籤的「getContext」屬性嗎?

我們能透過腳本刪除HTML5 Canvas標籤的「getContext」屬性嗎?

王林
王林轉載
2023-09-03 19:21:02994瀏覽

我们能通过脚本删除HTML5 Canvas标签的“getContext”属性吗?

HTML5規格中沒有說明,腳本刪除getContext屬性是有效的。

我們可以寫一段程式碼,刪除HTMLCanvasElement的getContext屬性,然後在單獨的語句中刪除我們將其設為未定義。

Delete window.HTMLCanvasElement.prototype.getContext;

_assertSame(window.HTMLCanvasElement.prototype.getContext, undefined,
   "window.HTMLCanvasElement.prototype.getContext", "undefined");

以上是我們能透過腳本刪除HTML5 Canvas標籤的「getContext」屬性嗎?的詳細內容。更多資訊請關注PHP中文網其他相關文章!

陳述:
本文轉載於:tutorialspoint.com。如有侵權,請聯絡admin@php.cn刪除