Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想让我的用户在一个漂亮的 UI 中输入一系列度数。即类似 45-135 的东西(在我的应用程序中,这实际上意味着 NE-SE 风向......)。找到 jQuery Knob,但不知道如何使用它来允许值是一个范围。
任何想法?
您可以将最小值和最大值设置为 0 和 360。像这样:
$(".dial").knob({min':0,'max':360});
您甚至可以使用一些步骤将可能的值限制为与 N-NE-E-SE-S-SO-O-NO 对应的某些内容
我希望这会有所帮助,如果没有,对不起。