來自:
http://hi.baidu.com/zdz8207/blog/item/19bb2b34b0ea093a5ab5f560.html
<DIV contenteditable="true" style="border:dashed blue 2px">Hello World!</DIV>
保存為html網(wǎng)頁,打開看看,在DIV里出現(xiàn)了一個光標(biāo),這個DIV就變成可以編輯的了。
類似的,SPAN,F(xiàn)ONT等都可以有 contenteditable="true" 這個屬性。
再試試下面的:
<DIV contenteditable="true" style="border:dashed blue 2px">Hello World!
<IMG src="http://p.blog.csdn.net/images/p_blog_csdn_net/comstep/70786/o_logo.jpg" />
</DIV>
我們就可以拉伸圖片了。
二、具體實(shí)現(xiàn):
1、需要兩個頁面,blank.html editor.html
2、blank.html 作為 editor.html的一個內(nèi)嵌Frame,作為編輯框。
<html>
<body topmargin="10" leftmargin="10" bgColor="#f6f6f6">
<div id="RTC" contenteditable = true></div>
</body>
</html>