我的网站上有一个购物车,我需要让用户随时轻松更改他们购物车中的商品数量。
这是我到目前为止的javascript代码:
<script type="text/javascript" language="javascript">
$(document).ready(function () {
var items = [];
$(".item").each(function () {
var productKey = $(this).find("input[type='hidden']").val();
var productQuantity = $(this).find("input[type='text']").val();
items.addKey(productKey, productQuantity); ?
});
// 1. Grab the values of each ammount input and it's productId.
// 2. Send this dictionary of key pairs to a JSON action method.
// 3. If results are OK, reload this page.
});
</script>
我写的评论只是对我如何进行的指导。
有没有办法将键/对元素添加到排序数组?我只需要它有一个键和值。没有什么花哨。
我写了一个addKey()
方法只是为了说明目的来展示我想要完成的事情。