如何使用在.js里写个function,将function中的内容打印在html页面的div上?

如何使用在.js里写个function,将function中的内容打印在html页面的div上?


慕容森
浏览 1296回答 3
3回答

qq_花开花谢_0

123456789101112131415161718<!DOCTYPE&nbsp;html><html><head><meta&nbsp;charset=utf-8><title>p</title><script>onload=function(){&nbsp;&nbsp;&nbsp;&nbsp;write("北京");}var&nbsp;write&nbsp;=&nbsp;function(str){&nbsp;&nbsp;&nbsp;&nbsp;div.innerHTML&nbsp;=&nbsp;str;}</script></head><body><div&nbsp;id="div"></div></body></html>

明月笑刀无情

12345function&nbsp;a(){&nbsp;&nbsp;&nbsp;&nbsp;var&nbsp;txt&nbsp;=&nbsp;'北京';&nbsp;&nbsp;&nbsp;&nbsp;var&nbsp;x=document.getElementById("mydiv");&nbsp;&nbsp;&nbsp;&nbsp;x.write(txt);}

慕容708150

理论上window.onload只能执行一次 即使定义多次 也只会执行最后定义的那个jquery的$(function(){})可以多次定义并被执行多次
打开App,查看更多内容
随时随地看视频慕课网APP

相关分类

JavaScript