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.
如何从 WinJS 中的滑块控件(输入 [范围])中删除工具提示?
添加::-ms-tooltip伪元素并设置display:为none;
::-ms-tooltip
display:
none;
http://msdn.microsoft.com/en-us/library/windows/apps/hh465805.aspx
input[type=range]::-ms-tooltip { display: none; }