javascript中的html标签是不是要放到最后比如<br/>
<!DOCTYPE HTML>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>document.write</title>
<script type="text/javascript">
var myname="我是"
document.write(myname+"<br/>""小可爱")
document.write("你的")
</script>
</head>
<body>
</body>
</html>
小可爱写在br后面就没有反应了,但是写在br前面就有用
document.write(myname+"小可爱"+"<br/>")