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 > ช่วยด้วยค่ะ หาวิธีใส่ emoticon ใน chat room ไม่ได้



 

ช่วยด้วยค่ะ หาวิธีใส่ emoticon ใน chat room ไม่ได้

 



Topic : 090162

Guest




ขออนุญาติปรึกษาเรื่อง การใส่ emoticon ใน chat room ค่ะ
คือว่าพอดีได้การบ้านมาทำ โดยได้รับ chat room ธรรมดามาแก้ไขแต่งเพิ่มเติม
แล้วทีนี้อยากใส่ emoticon ด้วย ปัญหาอยู่ที่ไม่ค่อยรู้เรื่อง ajax javascript jquery เลย
พอลองทำเพิ่มแล้วไม่รู้จะไปต่อยังไงดีอะค่ะ

Code (PHP)
<script type="text/javascript" src="jquery.min.js"></script>
<script type="text/javascript">
// jQuery Document
$(document).ready(function(){
	//If user submits the form
	$("#imageField").click(function(){	
		var clientmsg = $("#usermsg").val();
		$.post("post.php", {text: clientmsg});						
		$("#usermsg").attr("value", "");	
		return false;			
	});
	
	//Load the file containing the chat log
	function loadLog(){		
		var oldscrollHeight = $("#chatbox").attr("scrollHeight") - 20;
		$.ajax({
			url: "logchat.htm",
			cache: false,
			success: function(html){		
				$("#chatbox").html(html); //Insert chat log into the #chatbox div				
				var newscrollHeight = $("#chatbox").attr("scrollHeight") - 20;
				if(newscrollHeight > oldscrollHeight){
					$("#chatbox").animate({ scrollTop: newscrollHeight }, 'normal'); //Autoscroll to bottom of div
				}				
		  	},
		});
	}
	setInterval (loadLog, 2000);	//Reload file every 2 seconds
	
	//If user wants to end session
	$("#exit").click(function(){
		var exit = confirm("คุณต้องการออกจากระบบสนทนาหรือไม่?");
		if(exit==true){window.location = 'index.php?logout=true';}		
	});
});
</script>
<?php
if(!isset($_SESSION['name'])){
	loginForm();
}
else{
?><body onload="MM_preloadImages('images/buttercake.png','images/foamcake.png','images/moussecake.png','images/cheesecake.png','images/home.png','images/about.png','images/contacts.png')">

<div id="wrapper">
	<div id="menu">
		<p class="welcome">ยินดีต้อนรับ <b><?php echo $_SESSION['name']; ?></b></p>
		<p class="logout style1"><a id="exit" href="#">ออกจากการสนทนา <strong>(Exit Chat)</strong></a></p>
	  <div style="clear:both"></div>
	</div>	
	<div id="chatbox">
	<?php
	if(file_exists("logchat.htm") && filesize("logchat.htm") > 0){
		$fp = fopen("logchat.htm", "r");
		$contents = fread($fp, filesize("logchat.htm"));
		fclose($fp);
		echo $contents;
	}
	?></div>
	<form name="message" action="">
	  <p>
	    <input name="usermsg" type="text" id="usermsg" size="63" />
      </p>
	 
	</div> -->
	  <P>
	  </label>
	  <p>
	    <label>
	    <input type="image" name="imageField" id="imageField" src="images/b2.png"/>
	    </label>     
        </p>
  </form>
</div>
<!-- // script -->

<?php
}
?>


Code (PHP)
<?php
session_start();
function DateThai($strDate)     
{         
$strYear = date("Y",strtotime($strDate))+543;         
$strMonth= date("n",strtotime($strDate)); 
$strDay= date("j",strtotime($strDate)); 
$strHour= date("H",strtotime($strDate));      
$strMinute= date("i",strtotime($strDate));        
$strSeconds= date("s",strtotime($strDate));       
$strMonthCut = Array("","ม.ค.","ก.พ.","มี.ค.","เม.ย.","พ.ค.","มิ.ย.","ก.ค.","ส.ค.","ก.ย.","ต.ค.","พ.ย.","ธ.ค.");      
$strMonthThai=$strMonthCut[$strMonth];         
return "$strDay $strMonthThai $strYear, $strHour:$strMinute";    
} 
if(isset($_SESSION['name'])){
	$text = $_POST['text'];
	
	$fp = fopen("logchat.htm", 'a');
	fwrite($fp, "<div class='msgln'><font color='#FF9999'>(".DateThai(date("Y-m-d H:i:s")).") <b>".$_SESSION['name']."</b>: ".stripslashes(htmlspecialchars($text))."</fonts><br></div>");
	fclose($fp);
}
?>


อ้างอิง.. คือตอนแรกคิดว่าจะทำตามเว็บนี้ค่ะ
http://stackoverflow.com/questions/3896156/how-do-i-style-radio-buttons-with-images-laughing-smiley-for-good-sad-smiley
แต่ว่าทำไม่เป็น TT



Tag : HTML/CSS, JavaScript, Ajax, jQuery







Move To Hilight (Stock) 
Send To Friend.Bookmark.
Date : 2013-02-01 20:53:48 By : MA View : 2674 Reply : 1
 

 

No. 1



โพสกระทู้ ( 74,058 )
บทความ ( 838 )

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

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

ลองดูพวก BBCode ครับ



Go to : PHP Webboard Text - Free Webboard Script






แสดงความคิดเห็นโดยอ้างถึง ความคิดเห็นนี้
Date : 2013-02-02 07:15:07 By : mr.win
 

   

ค้นหาข้อมูล


   
 

แสดงความคิดเห็น
Re : ช่วยด้วยค่ะ หาวิธีใส่ emoticon ใน chat room ไม่ได้
 
 
รายละเอียด
 
ตัวหนา ตัวเอียง ตัวขีดเส้นใต้ ตัวมีขีดกลาง| ตัวเรืองแสง ตัวมีเงา ตัวอักษรวิ่ง| จัดย่อหน้าอิสระ จัดย่อหน้าชิดซ้าย จัดย่อหน้ากึ่งกลาง จัดย่อหน้าชิดขวา| เส้นขวาง| ขนาดตัวอักษร แบบตัวอักษร
ใส่แฟลช ใส่รูป ใส่ไฮเปอร์ลิ้งค์ ใส่อีเมล์ ใส่ลิ้งค์ 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 01
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 อัตราราคา คลิกที่นี่