如果您希望編寫一個能夠根據其可用性靈活地使用W3C DOM 或IE 4 DOM 的腳本,那麼您可以使用功能測試方法,該方法首先檢查是否存在確定瀏覽器是否具有您想要的功能的方法或屬性。
以下是顯示相同內容的程式碼片段 -
if (document.getElementById) { // If the W3C method exists, use it } else if (document.all) { // If the all[] array exists, use it } else { // Otherwise use the legacy DOM }
以上是我該如何編寫一個腳本,根據其可用性使用W3C DOM或IE 4 DOM?的詳細內容。更多資訊請關注PHP中文網其他相關文章!