<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"> <html> <head> <title> New Document </title> </head> <body>
<textarea id="editor" rows="13" cols="50">我的logo:</textarea>
<script type="text/javascript" >
var editor = document.getElementById('editor'); var img = document.createElement('img'); img.src = 'http://www.jb51.net/images/logo.gif'; editor.appendChild(img); alert(editor.innerHTML);
</script>
</body>
</html> |
|