Benim sınavda zamanım yetmedi. Biraz önce yaptım, paylaşayım dedim.
İlk önce 4 adet html dosyası oluşturuyoruz.
1) mainwindow.html
2) frame1.html
3) frame2.html
4) frame3.html
mainwindow.html
<frameset rows="160,*">
<frame src="frame1.html" noresize>
<frameset cols="50%,*">
<frame name="frame2" src="frame2.html" noresize>
<frame name="frame3" src="frame3.html" noresize>
</frameset>
</frameset>
<noframes>Your browser does not support frames!</noframes>
frame1.html
<html>
<head>
<script type="text/javascript" language="javascript">
<!--
parent.frame2.document.writeln("<h3>Maasi 1000'den az olanlar:</h3>")
parent.frame3.document.writeln("<h3>Maasi 1000'den fazla olanlar:</h3>")
function Recorder() {
var ad = document.form1.ad.value
var soy = document.form1.soy.value
var maas = parseFloat(document.form1.maas.value)
if(ad!="") {
if(soy!="") {
if(!isNaN(maas)) {
if(maas < 1000) {
parent.frame2.document.writeln("<p><b>Ad:</b> "+ad+"<br><b>Soyad:</b> "+soy+"<br><b>Maas:</b> "+maas+"</p>")
}
else {
parent.frame3.document.writeln("<p><b>Ad:</b> "+ad+"<br><b>Soyad:</b> "+soy+"<br><b>Maas:</b> "+maas+"</p>")
}
document.form1.ad.value = ""
document.form1.soy.value = ""
document.form1.maas.value = ""
}
else {
window.alert("Bir MAAS girmediniz ya da girdiginiz deger gecersiz!
Lutfen float bir deger giriniz")
document.form1.maas.value = ""
document.form1.maas.focus()
}
}
else {
window.alert("Lufen bir SOYAD giriniz!")
document.form1.soy.focus()
}
}
else {
window.alert("Lufen bir AD giriniz!")
document.form1.ad.focus()
}
}
-->
</script>
<style>
<!--
table {
font-family:Verdana, Arial; font-size:12px;
}
-->
</style>
</head>
<body>
<form name="form1">
<table>
<tr><td>Ad:</td><td><input type="text" name="ad"></td></tr>
<tr><td>Soyad:</td><td><input type="text" name="soy"></td></tr>
<tr><td>Maas:</td><td><input type="text" name="maas"></td></tr>
<tr><td colspan="2" align="right"><input type="button" value="Kaydet" onClick="Recorder(this)"></td></tr>
</table>
</form>
</body>
</html>
frame2.html ve frame3.html boş olacak.
Let`s make this world a better place to live !
|