有什么更简单的方法在文本中插入图片吗?
我不想用太复杂的HTML编辑器。我直接在文本中输入“<img border="0" src="image\tp.jpg">”,但不能显示指定的图片。能不能只需要用类似的简单方法就可以将图片插入到文本中呢?[此贴子已经被作者于2006-10-15 20:58:20编辑过]
[CODE]<script>
function wfsr(){
em=document.createElement("IMG")
em.src="http://bbs.bc-cn.net/bbs/aaa/asplogo1.gif"
test.appendChild(em)
}
function wfsr2(){
em=document.createElement("A")
em.innerText="bccn"
em.href="http://asp.bc-cn.net"
test.appendChild(em)
}
</script>
<button onclick=wfsr()>inertImg</button><button onclick=wfsr2()>inertLink</button>
<textarea id=test style="width:100%;height:300"></textarea>
<textarea id="ta" onclick="appendme()">click me</textarea>
<SCRIPT LANGUAGE="JavaScript">
<!--
function appendme(){
ta.innerText=""
img = document.createElement("IMG")
img.src="http://bbs.bc-cn.net/bbs/Skins/Default/emot/em01.gif"
ta.appendChild(img)
}
//-->
</SCRIPT>[/CODE]
这个效果应该对楼主有用。