我有基本的 javascript prompt() 函数
function askUser() {
if(confirm('Are you sure you want to add this item?')) {
if(prompt('How many of this would you like to order?', '')) {
......
我想要实现的是在屏幕上弹出提示消息时将输入字段的宽度调整为30px?用户只需输入一个数值或 2 个整数的数量。
还有我如何检查输入的值是否为整数?如果不是,我想提醒用户他输入了无效值。
谢谢你。