Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Type the following script in the Custom HTML element in your form and amend the form field name accordingly. Our example below shows a reading from the fields "start_date" and "end_date".

Thai

นี่เป็นสคริปต์ด่วนสำหรับเปรียบเทียบสองวันที่และตรวจสอบให้แน่ใจว่ามีขนาดใหญ่กว่าอีกวัน

พิมพ์สคริปต์ต่อไปนี้ในองค์ประกอบ HTML ที่กำหนดเองในแบบฟอร์มของคุณและแก้ไขชื่อฟิลด์แบบฟอร์มตามลำดับ ตัวอย่างของเราด้านล่างแสดงการอ่านจากฟิลด์ "start_date" และ "end_date"

Code Block
langjavascript
<script type="text/javascript">
$('form').submit(function(){
	startDate = $("input[name='start_date']").val();
	endDate = $("input[name='end_date']").val();
	if( endDate < startDate ){
		alert("End Date must be larger than the Start Date. Please try again.");
        $.unblockUI();
		return false;
	}else{
		return true;
	}
});

</script>