DOM — Document Object Model
Podstawy programowania w JavaScript ► |
window.document.write( "Kotwice: " window.document.write( "Obrazki: " window.document.write( "Formularze: window.document.write( "Łącza: "
+ window.document.anchors.length + “ " ); + window.document.images.length + " " ); + window.document.forms.length + "" );
+ window.document.links.length + "" );
document.write( "Kotwice: " + document.anchors.length + " " );
document.write( "Obrazki: " + document.images.length + " " );
document.write( "Formularze: " + document.forms.length + "" );
document.write( "Łącza: " + document.links.length + "" );