|
寫了這個(gè)東西,可能在高手看來(lái),非常的稚嫩!不過(guò)完全自己寫的!
還沒有完善,請(qǐng)大俠指導(dǎo)!!
看代碼
復(fù)制代碼 代碼如下:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<HTML>
<HEAD>
<TITLE> New Document </TITLE>
<style>
.test{border:1px solid #ccc;background-color:#eee;width:200px;height:60px;}
</style>
<script language="Javascript">
<!--
function isIE(){ //ie?
if (window.navigator.userAgent.indexOf("MSIE")>=1) return true;
else return false;
}
if(!isIE()){ //firefox innerText define
HTMLElement.prototype.__defineGetter__("innerText",
function(){
return this.textContent;
}
);
HTMLElement.prototype.__defineSetter__("innerText",
function(sText){
this.textContent=sText;
}
);
}function $(e){
return document.getElementById(e);
}
var arr=new Array();
function check(e){
var v=0;
for(i=0;i<arr.length;i++)
{if(arr[i]==e) v=1;
else v=0;}
if(v) return true;
else return false;
}
function edit(e){
var x=$(e);
var str=x.innerText;
if (check(e))
{
//alert("已經(jīng)存在在數(shù)組里!");
//alert(str);
var b=$(e+"fa");
str=$(e+"faz").value;
b.removeChild($(e+"faz"));
x.innerText=str;
}else{
//alert("沒有存在在數(shù)組里!");
a1=document.createElement("div");
a1.id=e+"fa";
a=document.createElement("INPUT");
a.name=e;
a.id=e+"faz";
a.value=str;
x.innerHTML="";
x.appendChild(a1);
a1.appendChild(a);
if(arr.length==0) arr[0]=e;
else arr[arr.length]=e;
//alert(a.name);
}
}
-->
</script>
</HEAD>
<BODY>
<div class="test" id="test" onclick="edit('test')">可編輯的內(nèi)容</div>
<div class="test" id="test1" onclick="edit('test1')">可編輯的內(nèi)容</div>
</BODY>
</HTML>
最后解決瀏覽器問(wèn)題的代碼
[Ctrl+A 全選 注:如需引入外部Js需刷新才能執(zhí)行]
JavaScript技術(shù):不用ajax實(shí)現(xiàn)點(diǎn)擊文字即可編輯的方法,轉(zhuǎn)載需保留來(lái)源!
鄭重聲明:本文版權(quán)歸原作者所有,轉(zhuǎn)載文章僅為傳播更多信息之目的,如作者信息標(biāo)記有誤,請(qǐng)第一時(shí)間聯(lián)系我們修改或刪除,多謝。