Сообщение от Live me Be
|
составил небольшой скрипт
|
Скрипт вовсе никудышний...
<!DOCTYPE html>
<html>
<head>
<title>test</title>
<style type="text/css">
</style>
<script type="text/javascript">
function show_alert() {
if (document.getElementById('name').value=="") {
alert ("Name, please");
return false
}
if (document.getElementById ('family').value=="") {
alert ("Family name, please");
return false
}
return true
}
</script>
</head>
<body>
<h1>Input</h1>
<form onsubmit='return show_alert()'>
<input type="text" id="name" /> <br />
<input typr="text" id="family" /> <br />
<input type="submit" value="Submit" />
</form>
</body>
</html>