gpt4 book ai didi

javascript - HTML 输入类型数字 min 和 max 属性在 IE 中不起作用

转载 作者:行者123 更新时间:2023-11-28 06:10:53 24 4
gpt4 key购买 nike

我在 HTML 中创建了一个表格,并为每个数字输入字段设置了最小和最大范围。当我在最新版本的 Chrome 和 Firefox 中运行演示时,我看到最右侧有小的增量和减量箭头。但是当我在 IE 中运行相同的应用程序时,向上和向下箭头不显示。

我的问题是:有没有办法让它在 IE 中显示,或者目前还没有支持吗?

提前致谢。

body {
font-family: 'Segoe UI', sans-serif;
}

span {
font-style: italic;
}
<!DOCTYPE html>

<html lang="en">

<head>
<meta charset="utf-8" />
<title>My first input test</title>
<link rel="stylesheet" href="app.css" type="text/css" />
</head>

<body>
<h1>Hello World!</h1>
<table class="table table-striped table-hover table-bordered" id="PatientTrackingBoardTable" border="1">
<thead>
<tr>
<th class="TopRow">Inventory</th>
<th class="TopRow">Qty</th>
</tr>
</thead>

<tr class="SubRow">
<td class="InventoryRow" style="width:75%">Chairs</td>
<td class="QtyAvailableCell">
<input id="ChairsAvailable" type="number" class="BedInputField" min="0" max="100" />
</td>
</tr>
<tr class="SubRow">
<td class="InventoryRow">Tables</td>
<td class="QtyAvailableCell">
<input id="TablesAvailable" type="number" class="BedInputField" min="0" max="100" />
</td>
</tr>
</table>
</body>

</html>

最佳答案

IE 10 和 11 都允许输入:数字 - 但您看不到 UI 旋转按钮。

关于javascript - HTML 输入类型数字 min 和 max 属性在 IE 中不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36406934/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com