简单的dom问题

发布于 2024-10-12 03:53:56 字数 539 浏览 4 评论 0原文

说我有,

<div id="searchform">
  <div style="float:right">
    <a href="~">Advanced Search</a>
  </div>
  <div id="resultStats">
    About 5 trillion results
  </div>
</div>

我只需要把第一个孩子改为float:bottom而不是float:right。

谢谢你们的帮助!我是认真的!所以当我将其输入到 chrome 控制台时,它不起作用。在我的 Sweet Search ext 中,它显示“无法读取 null 的属性‘childNodes’”

document.getElementById("subform_ctrl").childNodes[0].style = 'float:bottom';

(注意:id 是“subform_ctrl”)

say I have

<div id="searchform">
  <div style="float:right">
    <a href="~">Advanced Search</a>
  </div>
  <div id="resultStats">
    About 5 trillion results
  </div>
</div>

I just need to change the first child to float: bottom instead of float:right.

Thank you guys for your help! I really mean it! So when I enter this into the chrome console, it doesn't work. Within my Sweet Search ext, it says "Cannot read property 'childNodes' of null"

document.getElementById("subform_ctrl").childNodes[0].style = 'float:bottom';

(Note: id is 'subform_ctrl')

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

溇涏 2024-10-19 03:53:56
document.querySelector('#searchform *:first-child').style.float = 'bottom'

但我认为 float = Bottom 无效。

那么,您真正想要实现的目标是什么?

document.querySelector('#searchform *:first-child').style.float = 'bottom'

BUT I don't think float = bottom is valid.

So, what is it that you are really trying to accomplish?

巴黎盛开的樱花 2024-10-19 03:53:56
document.getElementById('searchform').childNodes[0].style = 'float:bottom';
document.getElementById('searchform').childNodes[0].style = 'float:bottom';
耳根太软 2024-10-19 03:53:56

浮:底部! (顶部?!)

alt text

浮动:底部?当然!

alt text

下一个版本我将删除​​“关于”,将“结果”换成“in”,并且删除“秒”并仅显示秒数(如果它长于 0.5)

Float: bottom! (top?!)

alt text

Float: bottom? Sure!

alt text

Next release I am gonna delete 'About' trade 'results' for 'in' and delete 'seconds' and only show the seconds if it's longer than .5

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文