我正在寻找一个数字微调器,它使用HTML5与Twitter Bootstrap 2.3集成 input type="number"

<input type="number" id="income" name="income" value="10">
Run Code Online (Sandbox Code Playgroud)
根据撰写本文时的caniuse,只有Chrome可以按照我的意愿呈现这个元素.可能Firefox很快就会这样做,从现在开始不会超过5到10年,IE也会提出一个解决方案.
我已经测试了其中几个,但都已经3年多了,依赖于jQuery UI并且没有与Bootstrap完全正确集成.
同时我很好奇是否有任何jQuery库/或其他解决方案在屏幕截图中呈现输入.
我不明白为什么这不起作用.谢谢!
#include<stdio.h>
#include<conio.h>
int main()
{
extern int i;
int i=20;
printf("%d",i);
}
Run Code Online (Sandbox Code Playgroud)
编译导致以下错误:
main.c: In function 'main':
main.c:6:9: error: declaration of 'i' with no linkage follows extern declaration
main.c:5:16: note: previous declaration of 'i' was here
Run Code Online (Sandbox Code Playgroud)
注意:CompileOnline在线编译代码