如果您希望編寫一個能夠根據(jù)其可用性靈活地使用 W3C DOM 或 IE 4 DOM 的腳本,那么您可以使用一種功能測試方法,該方法首先檢查是否存在確定瀏覽器是否具有您想要的功能的方法或?qū)傩浴?/p>
以下是顯示相同內(nèi)容的代碼片段 –
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 }
登錄后復(fù)制
以上就是我如何編寫一個腳本,根據(jù)其可用性使用W3C DOM或IE 4 DOM?的詳細內(nèi)容,更多請關(guān)注www.92cms.cn其它相關(guān)文章!