日期:2014-05-16 浏览次数:20322 次
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <title>Insert title here</title> </head> <body> <input type="button" value="点我加美女" onclick="document.write('美女')"/> </body> </html>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <title>Insert title here</title> <script type="text/javascript"> function add() { var div = document.getElementById("divAdd"); div.innerHTML="美女"; } </script> </head> <body> <input type="button" value="点我加美女" onclick="add();"/> <div id="divAdd"></div> </body> </html>
------解决方案--------------------