大家知道这是怎么做的吗?
有没谁知道,字体的设置是怎么做的,也就是,这是怎么做,有没具体的档案文件,希望能提供,我的email是xiaohonghui0@163.com!
哎,上面的图片怎么显示不了啊,就是文字编辑时,有设置粗体,斜体,超连接之类的!
希望有人能帮下我
总之是用JavaScript座的。
[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]
其中的一种做法。