สร้าง watermark ลายน้ำ ให้กับช่อง สำหรับการค้นหา ด้วย jQuery และ CSS อย่างง่าย

ตัวอย่างผลลัพธ์


CSS สำหรับกำหนดคุณสมบัติลายน้ำ ในที่ใช้รูปจาก google สำหรับทดสอบ สามารถแทนรูปภาพอื่นได้

<style type="text/css">
.watermark{
	background:url(http://www.google.com/cse/intl/en/images/google_site_search_watermark.gif) no-repeat 5px 2px;
}
</style>

HTML Code ตัวอย่าง

<form id="form1" name="form1" method="post" action="">
  <input name="kw" type="text" id="kw" size="45" />
  <input type="submit" name="Sbt" id="Sbt" value="ค้นหา" />
</form>

Javascript Code

<script src="http://www.google.com/jsapi" type="text/javascript"></script>
<script type="text/javascript">
google.load("jquery", "1.3.2");
</script>
<script type="text/javascript">
$(function(){
	var objKey="#kw"; // id ของ ช่องค้นหา 
	if($(objKey).val()==""){
			$(objKey).addClass("watermark");
	}	
	$(objKey).focus(function(){	 
		$(objKey).removeClass("watermark");			 
	}).blur(function(){
		if($(objKey).val()==""){
			$(objKey).addClass("watermark");
		}	
	});	
});
</script>

บทความในหมวดที่่น่าสนใจ อื่นๆ jQuery Learning

14 Mar 09 ค้นหาข้อความในหน้าเว็บเพจอย่างง่ายด้วย jQuery อ่าน 754 28 Oct 09 สร้าง Swap Banner แบนเนอร์แบบสลับอัตโนมัติ ด้วย jQuery อย่างง่าย อ่าน 743 19 Nov 09 สร้าง scrollbar แนวตั้ง จากรูปภาพ ด้วยเทคนิค css sprite image และ jQuery อ่าน 708 18 Mar 09 สร้างเครื่องคิดเลขอย่างง่ายด้วย CSS และ jQuery อ่าน 648 10 Dec 09 ประยุกต์ เทคนิค jQuery เลื่อน scrollbar ขึ้นลง ตามเมาส์ สำหรับ div และ textarea อ่าน 600 29 Nov 09 กำหนด hilight ของ cell ข้อมูลในตาราง ด้วย jQuery และ CSS อย่างง่าย อ่าน 544 08 Dec 09 แปลง jQuery object เป็น DOM object อ่าน 514 27 Nov 09 แก้ปัญหาความกว้าง option ของ select tag ใน ie ด้วย jQuery และ css อย่างง่าย อ่าน 508 07 Dec 09 การเลื่อน scrollbar อัตโนมัติตาม การเลื่อนขึ้นลง ของ mouse ด้วย jQuery อ่าน 450 02 Feb 10 หมุน สลับ แบนเนอร์ในแนวนอน ด้วย jQuery อย่างง่าย อ่าน 434 27 Jan 10 การใช้งาน jQuery.contains() ใน jQuery 1.4 อ่าน 325 01 Feb 10 การใช้งาน method delay() ใน jQuery 1.4 อ่าน 301 26 Jan 10 การใช้งาน method .clearQueue() ใน jQuery 1.4 javascript library เวอร์ชั่นล่าสุด อ่าน 275 24 Feb 10 เทคนิค สร้าง effect add to cart ด้วย jQuery อย่างง่าย อ่าน 275 19 Feb 10 สร้าง Horizontal Accordion แนวนอน ด้วย jQuery อย่างง่าย อ่าน 257
จำนวนผู้เยี่ยมชม 84567 คน 2010 © Copyright ninenik.com. All rights reserved.