为什么我的函数不执行?
我有这段代码,主体
<body onload="mail_receive()">
不会执行它。
function mail_receive() {
document.getElementById("w")="mail receive";
}
它不会显示在
<div id="w"></div>
I have this code, and body
<body onload="mail_receive()">
won't execute it.
function mail_receive() {
document.getElementById("w")="mail receive";
}
It won't show in
<div id="w"></div>
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您不能将字符串值分配给 DOM 元素并期望它起作用。 您可能无法将函数调用的结果用作 Javascript 中的左值。)
(事实上,一开始
You can't assign a string value to a DOM element and expect it to work. (In fact you probably can't use the result of a function call as an lvalue in Javascript to begin with.)
Try