用于数字转换的浏览器侧​​边栏?

发布于 2024-10-08 18:04:09 字数 161 浏览 3 评论 0原文

有谁知道我可以用来进行数字转换(十进制到十六进制等)的侧边栏(或“面板”,就像歌剧中所说的那样)?目前我正在使用这个,但它有点太大,不适合狭窄的侧边栏。

does anyone know a sidebar (or 'panel' like it's called in opera) that I can use for number conversions (decimal to hex and so on)? Currently I'm using this one but it's a bit too large to fit a narrow sidebar.

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

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

发布评论

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

评论(1

屋顶上的小猫咪 2024-10-15 18:04:09

由于它只是一点 JavaScript,因此可以自行编写:

<html>
<body>
  <form>
    <input name="dec" id="dec"
       placeholder="decimal"
       onBlur="document.getElementById('hex').value=
           parseInt(this.value,10).toString(16)"
       ></input>
    <br />
    <input name="hex" id="hex"
       placeholder="hex"
       onBlur="document.getElementById('dec').value=
           parseInt(this.value,16).toString(10)"
       ></input>
  </form>
</body>
</html>

Since it's just a bit of JavaScript, one can roll it oneself:

<html>
<body>
  <form>
    <input name="dec" id="dec"
       placeholder="decimal"
       onBlur="document.getElementById('hex').value=
           parseInt(this.value,10).toString(16)"
       ></input>
    <br />
    <input name="hex" id="hex"
       placeholder="hex"
       onBlur="document.getElementById('dec').value=
           parseInt(this.value,16).toString(10)"
       ></input>
  </form>
</body>
</html>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文