我正在使用XUL,下面是基本的滑块/比例实现:
<scale value="1" min="1" max="10" increment="1"/>
但是我想在它旁边显示一个数字框,显示在滑块中选择的值,也许我在XUL教程中看起来不够用,但我找不到可行的答案。
答案 0 :(得分:3)
<?xml version="1.0"?>
<?xml-stylesheet href="chrome://global/skin/" type="text/css"?>
<window id="yourwindow"
xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul">
<scale value="1" min="1" max="10" increment="1" id="a"/>
<textbox readonly="true" observes="a"/>
</window>