我有一个 html 表单,我想使用 javascript 从字段中提取最高数字。例如:
<input id="temp_0__Amount" name="temp[0].Amount" type="text" value="lorum ipsum">
<input id="temp_1__Amount" name="temp[1].Amount" type="text" value="lorum ipsum">
<input id="temp_2__Amount" name="temp[2].Amount" type="text" value="lorum ipsum">
在这种情况下,我想要一个 javascript 来生成 2。
我正在尝试使用 jQuery,但我无法再进一步:
$('input[name^="temp"]').last().name;
这会产生temp[2].Amount
. 但我只想提取 2。不是整个句子。而且我知道我可以只使用子字符串之类的东西,但我想知道是否有一种“干净”的方式。