Register Register Member Login Member Login Member Login Forgot Password ??
PHP , ASP , ASP.NET, VB.NET, C#, Java , jQuery , Android , iOS , Windows Phone
 

Registered : 109,037

HOME > PHP > PHP Forum > ช่วยดู code check ค่าว่างใน textbox หน่อยครับ ดู code พอเวลากด submit แล้วจะแสดง ข้อความ alert



 

ช่วยดู code check ค่าว่างใน textbox หน่อยครับ ดู code พอเวลากด submit แล้วจะแสดง ข้อความ alert

 



Topic : 031772



โพสกระทู้ ( 21 )
บทความ ( 0 )



สถานะออฟไลน์




ดู code Code (PHP)
<?php
<script language="javascript">
	function checkInput(){
		var form1 = document.getElementById("input1");
		if(form1.value == ""){
			alert("กรอกข้อมูลให้ครบด้วยครับ");
			form1.focus();
		}
		else{
			alert(form1.value);
			form1.focus();
		}
	}
</script>
</head>
<body onload="document.getElementById('input1').focus();">
<?
	include "connectdb.php";
?>
<meta http-equiv="Content-Type" content="text/html; charset=windows-874">
<link href="StyleSheet.css" rel="stylesheet" type="text/css">
<form name="form1" method="post" action="home_7.php" enctype="multipart/form-data">
<table border="0" width="600px">
<tr>
<td align="center"><img src="images/add.png" align="absmiddle"> <font class="txt4c"><strong>เพิ่มผู้ใช้</strong></font></td>
</tr>
</table><br>
<div style="padding-left:15px;padding-top:5px">
<font class="txt7b">
<table border="0" width="300px" class="txt7b" align="center">
<tr>
	<td>ชื่อผู้ใช้</td>
	<td><input type="id" name="Username" id="input1" onkeydown="if(event.keyCode == 13){ checkInput(); }" /></td>
</tr>
<tr>
	<td>รหัสผ่าน</td>
	<td><input type="password" name="Password"></td>
</tr>
</table><br />
<table border="0" width="650px">
<tr>
<td align="center"><input type="submit" name="Submit" value="  ตกลง  " onclick="checkInput();">
	 <input type="reset" name="Reset" value="ยกเลิก"> <input type="button" value="ย้อนกลับ" onclick="window.location = 'home.php'" /></td>
</tr>
</form>
?>


code พอเวลากด submit แล้วจะแสดง ข้อความ alert แต่ตรง form ผมมี action แล้วมันก็ทำงานตามปกติ คือจะทำยังไงพอมันแสดง alert แล้วเรากดตกลง แล้ว form มันไม่ทำงาน



Tag : - - - -







Move To Hilight (Stock) 
Send To Friend.Bookmark.
Date : 2009-09-16 01:29:54 By : phong1 View : 6528 Reply : 7
 

 

No. 1



โพสกระทู้ ( 11,835 )
บทความ ( 10 )

สมาชิกที่ใส่เสื้อไทยครีเอท Hall of Fame 2012

สถานะออฟไลน์


เอาไปดัดแปลงเอานะ

Code
<script type="text/javascript">
function doSubmit(frm){
if(frm.textbox1.value == ""){
alert("กรอกหน่อยซิ");
return false;
}else{
return true;
}
}
</script>

<form onsubmit="return doSubmit(this);">
<input type="text" name="textbox1" id="textbox1">
</form>







Date : 2009-09-16 01:53:14 By : plakrim
 


 

No. 2



โพสกระทู้ ( 581 )
บทความ ( 0 )



สถานะออฟไลน์
Facebook

Code
<input type="buttom" name="Submit" value=" ตกลง " onclick="checkInput();">


น่าจะเปลี่ยนจาก type submit button ถึงจะใช้ event ได้มังครับ ลองดู
Date : 2009-09-16 09:59:07 By : nilas
 

 

No. 3



โพสกระทู้ ( 356 )
บทความ ( 0 )

สมาชิกที่ใส่เสื้อไทยครีเอท

สถานะออฟไลน์
Twitter Facebook

ตาม comment ที่ 2 เลยครับ

เปลี่ยน type ของ input จาก submit ให้เป็น button

หรือไม่ลอง retrun false; ที่ if(form1.value == "")

ลองดูนะครับ
Date : 2009-09-16 11:13:48 By : aknueng
 


 

No. 4



โพสกระทู้ ( 2,794 )
บทความ ( 0 )

สมาชิกที่ใส่เสื้อไทยครีเอท

สถานะออฟไลน์


JavaScript HTML Check Input Text Field
Date : 2009-09-16 11:22:10 By : panyapol
 


 

No. 5

Guest


<script type="text/javascript" >
function chek(){
if(document.fom.name.value ==""){
alert("Please input Skill Name");
document.fom.name.focus();
return false;
}

}
</script>

//////////////////////////////////////////////

<form id="fom" name="fom" method="post" action="" onsubmit="return chek();">


<table width="200" border="1" align="center" >
<tr>
<td>
<table width="360" border="0" align="center">
<tr>
<td colspan="2" ><p align="center"><font color="#0099FF" >Add Skill</font></p></td>
</tr>
<tr>
<td width="155"><p align="right"> Skill Name</p></td>
<td><input name="name" type="text" id="name" /></td>
</tr>
<tr>
<td><p align="right">Type :</p></td>
<td><select name="dept_id" id="dept_id" onchange="dept_emp('<?=$dept_id.",".$sum?>')" >
<option value="">Please select Type</option>
<option value="1">Standard</option>
<option value="2">Basic</option>
<option value="3">Skill Up</option>

</select></td>
</tr>
<td width="155"><p align="right"> Level Skill</p></td>
<td><input name="name" type="text" id="name" value="<?=$sum?>" disabled /></td>
</tr>
</table>
<p>&nbsp;</p>
<table width="200" border="0" align="center">
<tr>
<td width="93" align="right"><input type="submit" name="add" id="add" value="Insert" /></td>
<td width="97" align="left">
<input type="button" value="Close" onclick="javascript:window.close();" /></td>
</tr>
</table>
</td>
</tr>
</table>
</form>


มันไม่ alert ให้ผมเหมือนกันครับ มันเข้า form เลย
Date : 2014-05-27 09:11:00 By : php test
 


 

No. 6



โพสกระทู้ ( 107 )
บทความ ( 0 )



สถานะออฟไลน์
Facebook

ใช้ html5 ช่วยดีกว่าครับ ไม่ต้องมานั่งเขียนโค๊ด คำสั่ง เช็คค่าของ html5 = required
ตัวอย่าง
Code
<input required name="company_from" type="text" id="company_from" size="39" />


ถ้ามีค่าว่างหรือไม่ได้กรอกข้อมูล เวลากด submit มันจะแจ้งเตือนตรงฟิลด์นั้นทันที
Date : 2014-05-27 10:24:39 By : topza1412
 


 

No. 7

Guest


<script type="text/javascript" >
function chek(){
if(document.getElementById("name").value == ""){
alert("Please input Skill Name");
document.getElementById("name").focus();
return false;
}

if(confirm("Are you sure you want to save ?")){
document.fom.target = "_top";
document.fom.method = "post";
document.fom.action = "test.php";
document.fom.submit();
}

}
</script>

//////////////////////////////////////////////

<form id="fom" name="fom" method="post">


<table width="200" border="1" align="center" >
<tr>
<td>
<table width="360" border="0" align="center">
<tr>
<td colspan="2" ><p align="center"><font color="#0099FF" >Add Skill</font></p></td>
</tr>
<tr>
<td width="155"><p align="right"> Skill Name</p></td>
<td><input name="name" type="text" id="name" /></td>
</tr>
<tr>
<td><p align="right">Type :</p></td>
<td><select name="dept_id" id="dept_id" onchange="dept_emp('<?=$dept_id.",".$sum?>')" >
<option value="">Please select Type</option>
<option value="1">Standard</option>
<option value="2">Basic</option>
<option value="3">Skill Up</option>

</select></td>
</tr>
<td width="155"><p align="right"> Level Skill</p></td>
<td><input name="name" type="text" id="name" value="<?=$sum?>" disabled /></td>
</tr>
</table>
<p>&nbsp;</p>
<table width="200" border="0" align="center">
<tr>
<td width="93" align="right"><input type="button" name="add" id="add" value="Insert" onclick="chek();" /></td>
<td width="97" align="left">
<input type="button" value="Close" onclick="javascript:window.close();" /></td>
</tr>
</table>
</td>
</tr>
</table>
</form>
Date : 2014-05-29 17:07:33 By : เรก
 

   

ค้นหาข้อมูล


   
 

แสดงความคิดเห็น
Re : ช่วยดู code check ค่าว่างใน textbox หน่อยครับ ดู code พอเวลากด submit แล้วจะแสดง ข้อความ alert
 
 
รายละเอียด
 
ตัวหนา ตัวเอียง ตัวขีดเส้นใต้ ตัวมีขีดกลาง| ตัวเรืองแสง ตัวมีเงา ตัวอักษรวิ่ง| จัดย่อหน้าอิสระ จัดย่อหน้าชิดซ้าย จัดย่อหน้ากึ่งกลาง จัดย่อหน้าชิดขวา| เส้นขวาง| ขนาดตัวอักษร แบบตัวอักษร
ใส่แฟลช ใส่รูป ใส่ไฮเปอร์ลิ้งค์ ใส่อีเมล์ ใส่ลิ้งค์ FTP| ใส่แถวของตาราง ใส่คอลัมน์ตาราง| ตัวยก ตัวห้อย ตัวพิมพ์ดีด| ใส่โค้ด ใส่การอ้างถึงคำพูด| ใส่ลีสต์
smiley for :lol: smiley for :ken: smiley for :D smiley for :) smiley for ;) smiley for :eek: smiley for :geek: smiley for :roll: smiley for :erm: smiley for :cool: smiley for :blank: smiley for :idea: smiley for :ehh: smiley for :aargh: smiley for :evil:
Insert PHP Code
Insert ASP Code
Insert VB.NET Code Insert C#.NET Code Insert JavaScript Code Insert C#.NET Code
Insert Java Code
Insert Android Code
Insert Objective-C Code
Insert XML Code
Insert SQL Code
Insert Code
เพื่อความเรียบร้อยของข้อความ ควรจัดรูปแบบให้พอดีกับขนาดของหน้าจอ เพื่อง่ายต่อการอ่านและสบายตา และตรวจสอบภาษาไทยให้ถูกต้อง

อัพโหลดแทรกรูปภาพ

Notice

เพื่อความปลอดภัยของเว็บบอร์ด ไม่อนุญาติให้แทรก แท็ก [img]....[/img] โดยการอัพโหลดไฟล์รูปจากที่อื่น เช่นเว็บไซต์ ฟรีอัพโหลดต่าง ๆ
อัพโหลดแทรกรูปภาพ ให้ใช้บริการอัพโหลดไฟล์ของไทยครีเอท และตัดรูปภาพให้พอดีกับสกรีน เพื่อความโหลดเร็วและไฟล์ไม่ถูกลบทิ้ง

   
  เพื่อความปลอดภัยและการตรวจสอบ กระทู้ที่แทรกไฟล์อัพโหลดไฟล์จากที่อื่น อาจจะถูกลบทิ้ง
 
โดย
อีเมล์
บวกค่าให้ถูก
<= ตัวเลขฮินดูอารบิก เช่น 123 (หรือล็อกอินเข้าระบบสมาชิกเพื่อไม่ต้องกรอก)







Exchange: นำเข้าสินค้าจากจีน, Taobao, เฟอร์นิเจอร์, ของพรีเมี่ยม, ร่ม, ปากกา, power bank, แฟลชไดร์ฟ, กระบอกน้ำ

Load balance : Server 03
ThaiCreate.Com Logo
© www.ThaiCreate.Com. 2003-2024 All Rights Reserved.
ไทยครีเอทบริการ จัดทำดูแลแก้ไข Web Application ทุกรูปแบบ (PHP, .Net Application, VB.Net, C#)
[Conditions Privacy Statement] ติดต่อโฆษณา 081-987-6107 อัตราราคา คลิกที่นี่