Начало
Формы
Список изделия
Только войдите в пункт и щелчок, 'Добавьте к Списку'. Когда Вы закончены, щелкните 'Выставочным Списком', чтобы видеть записи.
JavaScript Forms: Список изделия
<!-- ONE STEP TO INSTALL ITEMS LIST: 1. Copy the last code into the BODY of your HTML document --> <!-- STEP ONE: Add this code into the BODY of your HTML document --> <BODY> <CENTER> <FORM name="history"> <! > <! > <INPUT name="command" type="text" value=""> <INPUT type="button" value="Add to List" onclick="f_store(document.history.command.value)"> <INPUT name="history" type="button" value="Show List" onclick="f_print()"> </FORM> <P> <SCRIPT language="JavaScript"> <!-- hide it ... function MakeArray( n ) { if( n <= 0 ) { this.length = 0; return this; } this.length = n; for( var i = 1; i <= n; i++ ) { this[ i ] = 0; } return this; } var history = new MakeArray( 15 ); var index = 0; var cmmnd = 1; function f_store( sTR ) { var i; if( index >= history.length ) { for( i = 1; i < history.length; i++ ) history[i-1] = history[i]; index = history.length - 1; } history[ index ] = cmmnd + ":" + sTR; ++cmmnd; ++index; document.history.command.value=""; } function f_print() { var allCmmnds, i; allCmmnds = ""; for( i = 0; i < index; i++ ) allCmmnds += history[i] + "\n"; alert( allCmmnds ); } // End --> </SCRIPT> <!-- Script Size: 1.30 KB -->