Script Örnekleri 3
|
|
Mesaj Gösterme
Butona tıklandığında Alert ile mesaj verir.Mesajda istediğimizi yazdırırız.
<html>
<head>
<script>
function mesaj()
{
alert("Dokuz Eylül Üniversitesi"+"n"+"İzmir Meslek Yüksek Okulu")
}
</script>
</head>
<body>
<input type="button" onclick="mesaj()" value="Mesaj Göster" />
</body>
</html>
|
Status
Onload-> Sayfa açıldığında ilk yüklenen demektir.Bu uygulamada durum çubuğuna yazı yazıyoruz.
<html>
<head>
<script type="text/javascript">
function bar()
{
window.defaultStatus="iyi ki baktın:)";
}
</script>
</head>
<body onload="bar()">
<p>Alttaki durum çubuğuna bak:)</p>
</body>>
</html>
|
PopUp Pencerede Açma
Text kutusuna yazdığımızı butona tıklayınca PopUp pencere de açar.
<html>
<head>
<script>
function popup()
{
pen1=window.open('','','top=200 left=150 width=300 height=50');
pen1.document.write("<body bgcolor='pink'>");
pen1.document.write("<center><font size=7;>"+ document.form.text.value+"</font>");
pen1.focus();
}
</script>
<head>
<body>
<form name="form">
mesaj<input type='text' name='text'>
<button onclick="popup()" name="y">popup pencere</button><br>
</body>
</html>
|
Kaç Fotoğraf Olduğunu Bulma
document.write(document.images.length + " image")->Ekranda kaç resim olduğunun sayısını verir.
<html>
<body>
<img border="0"src="1.jpg" width="48" height="48"><br>
<img border="0"src="1.jpg" width="107" height="98"><br>
<img border="0"src="1.jpg" width="187" height="120"><br>
<img border="0"src="1.jpg" width="237" height="180"><br/>
<script type="text/javascript">
document.write(document.images.length + " image")
</script>
</body>
</html>
|
|
|
Design By RoyaLChiLD www.ownzstyle.tr.gg
|
Bugün 3 ziyaretçi (3 klik) kişi burdaydı!