按 id 更改链接上的innerHTML
我试图借助下面标记为“html”的标签中显示的同一元素的 id 来更改锚元素的innerHTML。
JS:
onload=function(){
var localUrl = document.URL
localUrl = localUrl.split('http://')[1].split('/');
document.getElementById('menuDomain').innerHTML = localUrl[0];
}
html: <a id="menuDomain" href=".."></a>
但锚元素的innerHTML保持不变。 :(
I am trying to change the innerHTML of the anchor element with the help of the id of the same element displayed below in the label marked "html".
JS:
onload=function(){
var localUrl = document.URL
localUrl = localUrl.split('http://')[1].split('/');
document.getElementById('menuDomain').innerHTML = localUrl[0];
}
html: <a id="menuDomain" href=".."></a>
But the innerHTML of the anchor element remains unchanged. :(
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
当您在
document.URL
之后添加分号时,效果可能会更好...It may well work better when you add a semicolon after the
document.URL
...