25,980
社区成员
发帖
与我相关
我的任务
分享<html>
<head>
<SCRIPT LANGUAGE=javascript>
function window_onload() {
textEdit.document.body.contentEditable = "True"; //This line
works in Internet Explorer 5.5,
// but not
in Internet Explorer 5.
textEdit.document.designMode="On"; //This line works in
Internet Explorer 5,
// but not in Internet
Explorer 5.5.
textEdit.focus();
}
</SCRIPT>
</head>
<body onload="return window_onload()" language="javascript">
<iframe name="textEdit" id="textEdit" width="100%" height="100%"
src="http://www.g.cn"></iframe>
</body>
</html>