אשכול: שאלה| JS - Value
View Single Post
ישן 11-06-09, 22:27   # 3
0xfo7d
חבר בקהילה
 
מיני פרופיל
תאריך הצטרפות: Oct 2005
הודעות: 292
שלח הודעה באמצעות ICO אל 0xfo7d

0xfo7d לא מחובר  

HTML קוד:
<html>
   <head>
     <title>ANDOR</title>
     <script language="JavaScript">
     <!--
	var text ;

	function startButton() {
	text = document.deticals.text.value ;
	  if (text == "") {
	  	  alert("הכנס תוכן בכדי להמשיך");
	  }
	}
     -->
     </script>
   </head>
   <body>
	<form name="deticals" method="post" onsubmit="startButton();">
	<input type="text" name="text" />
	<input type="submit" value="Confirm" />
	</form>
   </body>
</html>

=]
  Reply With Quote