<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>yclass.com</title>
<meta http-equiv="Content-Type" content="text/htmlcharset=utf-8" />
</head>
<body>
<iframe name="" id="demo" src="" allowTransparency="true"></iframe>
</body>
<script type="text/javascript">
//<![CDATA[
function convEditor(iframe,defaultHtml) {
var doc=document.getElementById(iframe).contentWindow.document
doc.designMode='On'
doc.contentEditable=true
doc.open()
doc.write('<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">',
'<html xmlns="http://www.w3.org/1999/xhtml">',
'<body style="font-size:14px"><div>'+(defaultHtml||' ')+'</div></body></html>')
doc.close()
doc.designMode='Off'
doc.contentEditable=false
}
var html = '<img src="http://bbs.51js.com/images/default/logo.gif" alt="" />'
convEditor('demo',html)
//]]>
</script>
</html>
看了这个应该明白了吧
1、首先,新建一个网页。
2、然后,为<button>按钮添加onclick事件,响应函数名的addiframeclick()。
3、再添加js脚本框架,并写出addiframeclick()函数的声明。
4、addiframeclick()函数的作用是为iframe框架添加onclick()事件。
5、这样,当点击button按钮后,会给iframe框架添加onclick()事件,点onclick()事件的响应效果是,点击iframe框架d出信息提示。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)