有没有人知道我可以用来进行数字转换(十进制到十六进制等)的侧边栏(或者像在Opera中调用的'面板')?目前我正在使用this one,但它有点太大而无法适应狭窄的侧边栏。
答案 0 :(得分:2)
因为它只是一点点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>