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,027

HOME > บทความจากสมาชิก > contentEditable div แทรกรูปได้ คลิกเคอร์เซอร์ไว้ตรงไหนก็จำได้ ใช้แทน textarea



 
Clound SSD Virtual Server

contentEditable div แทรกรูปได้ คลิกเคอร์เซอร์ไว้ตรงไหนก็จำได้ ใช้แทน textarea

div input
contentEditable div แทรกรูปได้ คลิกเคอร์เซอร์ไว้ตรงไหนก็จำได้ ใช้แทน textarea

Code
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
	"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
	<title></title>
	<meta http-equiv="content-type" content="text/html;charset=utf-8" />
</head>
<body>
<div style="float:left">
	<div id="area" contentEditable="true" style="width:290px;height:300px;border:1px solid gray" onblur="onDivBlur();" onmousedown="return cancelEvent(event);" onmouseup="captureSelection();" onkeyup="captureSelection();fadd=true;" onfocus="restoreSelection();"></div>
	<div id="emo" style="width:290px;"></div>
	<div>ขอขอบคุณไอคอนสวยๆจาก findicons.com<br /><a href="http://findicons.com/pack/178/popo_emotions/2"> http://findicons.com/pack/178/popo_emotions/2</a> </div>
</div>
<div style="float:left">
	<button onclick="show()">Show HTML»</button>
</div>
<div style="float:left">
	<textarea id="show" style="width:600px;height:600px;border:1px solid gray"></textarea>
</div>
<script type="text/javascript">
//เพิ่ม แก้ไข icon ไดที่ img[]
	var link, savedRange, isInFocus, editable=document.getElementById('area'), selection, fadd=true, blank, img=[
	'http://images-1.findicons.com/files/icons/178/popo_emotions/24/byebye.png',
	'http://images-1.findicons.com/files/icons/178/popo_emotions/24/canny.png',
	'http://images-1.findicons.com/files/icons/178/popo_emotions/24/oh.png',
	'http://images-1.findicons.com/files/icons/178/popo_emotions/24/sweet_kiss.png',
	'http://images-1.findicons.com/files/icons/178/popo_emotions/24/hungry.png',
	'http://images-1.findicons.com/files/icons/178/popo_emotions/24/still_dreaming.png',
	'http://images-1.findicons.com/files/icons/178/popo_emotions/24/beat_plaster.png',
	'http://images-1.findicons.com/files/icons/178/popo_emotions/24/adore.png',
	'http://images-1.findicons.com/files/icons/178/popo_emotions/24/hell_boy.png',
	'http://images-1.findicons.com/files/icons/178/popo_emotions/24/after_boom.png',
	'http://images-1.findicons.com/files/icons/178/popo_emotions/24/dribble.png',
	'http://cdn3.iconfinder.com/data/icons/fugue/bonus/icons-24/thumb-up.png'
	];
while (img.length>0){
link=img.shift();
var oImg=document.createElement("img");
oImg.setAttribute('src', link);
oImg.setAttribute('alt', 'na');
//oImg.setAttribute('height', '24px');
oImg.setAttribute('onclick', 'add(\''+link+'\')');
document.getElementById('emo').appendChild(oImg);
}
function captureSelection() {
    // Don't capture selection outside editable region
    var isOrContainsAnchor = false,
        isOrContainsFocus = false,
        sel = window.getSelection(),
        parentAnchor = sel.anchorNode,
        parentFocus = sel.focusNode;
    while(parentAnchor && parentAnchor != document.documentElement) {
        if(parentAnchor == editable) {
            isOrContainsAnchor = true;
        }
        parentAnchor = parentAnchor.parentNode;
    }
    while(parentFocus && parentFocus != document.documentElement) {
        if(parentFocus == editable) {
            isOrContainsFocus = true;
        }
        parentFocus = parentFocus.parentNode;
    }
    if(!isOrContainsAnchor || !isOrContainsFocus) {
        return;
    }
    selection = window.getSelection();
    // Get range (standards)
    if(selection.getRangeAt !== undefined) {
        savedRange = selection.getRangeAt(0);
    // Get range (Safari 2)
    } else if(
        document.createRange &&
        selection.anchorNode &&
        selection.anchorOffset &&
        selection.focusNode &&
        selection.focusOffset
    ) {
        savedRange = document.createRange();
        savedRange.setStart(selection.anchorNode, selection.anchorOffset);
        savedRange.setEnd(selection.focusNode, selection.focusOffset);
    } else {
        // Failure here, not handled by the rest of the script.
        // Probably IE or some older browser
    }
};

function restoreSelection()
{
    isInFocus = true;
    if (savedRange != null) {
        if (window.getSelection)//non IE and there is already a selection
        {
            var s = window.getSelection();
            if (s.rangeCount > 0) 
                s.removeAllRanges();
				s.addRange(savedRange);
        }
        else 
            if (document.createRange)//non IE and no selection
            {
                window.getSelection().addRange(savedRange);
            }
            else 
                if (document.selection)//IE
                {
                    savedRange.select();
                }
    }

}
//this part onwards is only needed if you want to restore selection onclick
var isInFocus = false;
function onDivBlur()
{
    isInFocus = false;
}

function cancelEvent(e)
{
    if (isInFocus == false && savedRange != null) {
        if (e && e.preventDefault) {
            //alert("FF");
            e.stopPropagation(); // DOM style (return false doesn't always work in FF)
            e.preventDefault();
        }
        else {
            window.event.cancelBubble = true;//IE stopPropagation
        }
    restoreSelection();
        return false; // false = IE style
    }
}
function add(png){
	if (document.getElementById('area').innerHTML==''){
	blank=true;
	}else{
	blank=false;	
	}
   var cursorStart = document.createElement('img'),
        collapsed = savedRange.collapsed;
        
    //cursorStart.appendChild(document.createTextNode('-'));
    ///cursorStart.id = 'cursorStart';
    cursorStart.src=png;
    //cursorStart.style.width="30px"
    // Insert beginning cursor marker
    savedRange.insertNode(cursorStart);
    // Insert end cursor marker if any text is selected
  
if (fadd==true){
	if (blank!=true){
	savedRange.setEndAfter(savedRange.startContainer);
	savedRange.setStartAfter(savedRange.startContainer);
	}
fadd=false;
}

savedRange.setEnd(savedRange.startContainer, savedRange.startOffset+1);
savedRange.setStart(savedRange.startContainer, savedRange.startOffset+1);

restoreSelection();
captureSelection();

}

function show(){
	document.getElementById('show').innerHTML=document.getElementById('area').innerHTML;
}
</script>
	
</body>
</html>







   
Share
Bookmark.   

  By : cybercombat
  Article : บทความเป็นการเขียนโดยสมาชิก หากมีปัญหาเรื่องลิขสิทธิ์ กรุณาแจ้งให้ทาง webmaster ทราบด้วยครับ
  Score Rating :
  Create Date : 2012-01-03
  Download : No files
Sponsored Links
ThaiCreate.Com Forum


Comunity Forum Free Web Script
Jobs Freelance Free Uploads
Free Web Hosting Free Tools

สอน PHP ผ่าน Youtube ฟรี
สอน Android การเขียนโปรแกรม Android
สอน Windows Phone การเขียนโปรแกรม Windows Phone 7 และ 8
สอน iOS การเขียนโปรแกรม iPhone, iPad
สอน Java การเขียนโปรแกรม ภาษา Java
สอน Java GUI การเขียนโปรแกรม ภาษา Java GUI
สอน JSP การเขียนโปรแกรม ภาษา Java
สอน jQuery การเขียนโปรแกรม ภาษา jQuery
สอน .Net การเขียนโปรแกรม ภาษา .Net
Free Tutorial
สอน Google Maps Api
สอน Windows Service
สอน Entity Framework
สอน Android
สอน Java เขียน Java
Java GUI Swing
สอน JSP (Web App)
iOS (iPhone,iPad)
Windows Phone
Windows Azure
Windows Store
Laravel Framework
Yii PHP Framework
สอน jQuery
สอน jQuery กับ Ajax
สอน PHP OOP (Vdo)
Ajax Tutorials
SQL Tutorials
สอน SQL (Part 2)
JavaScript Tutorial
Javascript Tips
VBScript Tutorial
VBScript Validation
Microsoft Access
MySQL Tutorials
-- Stored Procedure
MariaDB Database
SQL Server Tutorial
SQL Server 2005
SQL Server 2008
SQL Server 2012
-- Stored Procedure
Oracle Database
-- Stored Procedure
SVN (Subversion)
แนวทางการทำ SEO
ปรับแต่งเว็บให้โหลดเร็ว


Hit Link
   







Load balance : Server 00
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 อัตราราคา คลิกที่นี่