首页 > PHP资讯 > HTML5培训技术 > 在textarea中显示html页面的javascript代码_表单特效

在textarea中显示html页面的javascript代码_表单特效

HTML5培训技术
我想让textarea中写的html页面显示为html形式
我知道有htmledit之类的工具 我用不了他的那么多的功能 我只要简单的显示就可以了
1楼
如果你只为显示的话,可以用document.write()
如果还要编辑的话,我觉得你可能还是要用htmledit之类的工具,我现在在研究fckeditor,他有几中类型,有功能少的。嘿嘿,个人之见,希望对你有用。
2楼


《script》
function test()
{
x=window.open("about:blank");
x.document.write(tx1.value);
}
《script》
3楼
在多行文本框中显示
function Deal(fString)
fString = replace(fString, ">", ">")
fString = replace(fString, "<", "<")
fString = Replace(fString," ",chr(32))
fString = Replace(fString,""",chr(34))
fString = Replace(fString,"'",chr(39))
fString = Replace(fString, "", CHR(13))
fString = Replace(fString, "

", CHR(10) & CHR(10))
fString = Replace(fString, "
", CHR(10))
Deal = fString
end function
用此函数可以
4楼

用这个代替 textarea
5楼
up
6楼
将html页面显示在textarea中显示不会,不过将textarea中的显示为html页面倒是可以的....
document.write(xxxxxx)
xxxxx为你的textarea的值
7楼


8楼
这么麻烦,用iframe不就行了
9楼
也可以编辑
10楼
友情up。
11楼



HTML5培训技术

本文由欣才IT学院整理发布,未经许可,禁止转载。
支持7不支持0