您所在的位置: 程序员家园 -> 家园博客 ->
 
在哪里摔倒
就在哪里自己爬起来

用户登录

查  找

最新评论

最新留言

常用网站

网易邮箱 GMAIL  

百度搜索 MSDN

霏凡软件 BT精品

影视帝国 射 手 网

电驴下载 全 库 网

友情连接

茄菲的窝 冰冰博客

枫叶飘零 玫  瑰

ACEN 云 豹 子

统  计



最简单的html编辑器,一开始是这样子的吗?
狼子 发表于 2006-8-22 19:05:00 阅读全文 | 回复(0) | 引用通告 | 编辑

读这两个:

user1/9/archives/2006/2612.html

user1/9/archives/2006/2613.html

html编辑器是这样子的吗?

<html>
 <body>
  <center>
   <div unselectable="on" align="center" style="height:360; width:400; background-color:menu; border:outset menu">
    <br>
    <div id="foo" contenteditable align="left" style="height:250; width:350; background-color:white;font-face:Arial; padding:2; border:inset powderblue; scrollbar-base-color:powderblue; overflow-auto;">
    </div>
    <input type="button" value="粗体" unselectable="on" onclick='document.execCommand("Bold"); foo.focus();'>
    <input type="button" value="斜体" unselectable="on" onclick='document.execCommand("Italic"); foo.focus();'>
    <input type="button" value="下划线" unselectable="on" onclick='document.execCommand("Underline"); foo.focus();'>
    <input type=button value="黑体" onclick=document.execCommand('FontName',false,'黑体')>
    <input type=button value="9号字" onclick=document.execCommand('FontSize',false,9)>
    <input type=button value="红色字" onclick=document.execCommand('FontColor',false,'#0000ff')>
    <br>
    <input type=button value="撤消" onclick=document.execCommand('Undo')>
    <input type=button value="重做" onclick=document.execCommand('Redo') id=button2 name=button2>
    <input type=button value="删除" onclick=document.execCommand('Delete')>
    <input type=button value="剪切" onclick=document.execCommand('Cut')>
    <input type=button value="拷贝" onclick=document.execCommand('Copy')>
    <input type=button value="粘贴" onclick=document.execCommand('Paste')>
    <br>
    <input type=button value="刷新" onclick=document.execCommand('refresh',false,0)>
    <input type=button value="停止" onclick=document.execCommand('stop')>
    <input type=button value="保存" onclick=document.execCommand('SaveAs')>
    <input type=button value="另存为" onclick=document.execCommand('Saveas',false,'c:\\test.htm')>
   </div>
  </center>
  <form name="form1">
   <textarea name="mytext" cols="50" rows="10"></textarea>
   <input type="button" value="取文本" onclick='form1.mytext.value=foo.innerHTML;'>
   <input type="button" value="设文本" onclick='foo.innerHTML=form1.mytext.value;'>
  </form>
 </body>
</html>

提交到数据库的内容是form1.mytext,对不对?所以这个是最简单的html编辑器,最开始的样子,对不对?

发表评论:

    昵称:
    密码:
    主页:
    标题:
Powered by Oblog.