Hinzor
Junior Member | Редактировать | Профиль | Сообщение | Цитировать | Сообщить модератору привет, кто подскажет что не так тут? Спасибо: <div class="locator"> <form name="locate"> Please enter model type: <input type="text" name="model"> <br> <input type="button" value="process" onClick="process()"> <br> This model got following engine type & speed features: <input type="text" name="info" readonly="readonly"> </form> <script type="text/javascript"> function process() { var model = parseInt(document.locate.zip.value), info = null; if (model = R) info = 550 hp V8 / 3.8 s. to 60 mph & 11.6 s. to 122.2 mph; else if (model = S) info = 380 hp V6 / 5.0 to 60 mph & a quarter-mile time: 13.1 s. to 107.9 mph; else alert('Eror, please specify R or S only!'); if (info != null) document.locate.info.value = info; } </script> </div> |