我有一系列输入字段。我永远不知道有多少,所以我需要从一个类中获取价值。在这种情况下,类是.total
.
这bestresult
是一个从 获取其值的文本字段mysql
,但我希望手动更改它或通过其他文本字段中的最大值进行更改。
这是代码。显然不起作用,但也许你明白我想要做什么。
<!DOCTYPE HTML>
<html>
<head>
<meta charset="utf-8">
<title>Untitled Document</title>
</head>
<script src="http://code.jquery.com/jquery-latest.min.js"></script>
<script type="text/javascript">
$('input.total').change(function()
{
var max = $('.total').max();
$('#bestresult').attr("value", max);
});
</script>
<body>
<form>
<input type="text" name="bestresult" id="bestresult" class="total" value=""><br>
<input type="text" name="resultat[100][total]" class="total" value=""><br>
<input type="text" name="resultat[121][total]" class="total" value=""><br>
<input type="text" name="resultat[130][total]" class="total" value="">
</form>
</body>
</html>