获取页面上的数据
Posted 流去
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了获取页面上的数据相关的知识,希望对你有一定的参考价值。
1 forEach循环中,
如果使用这种方式取, var AAA= $("#AAA").val(); 只会取到,这个循环的第1个
解决办法 1 绑定事件时,传this过来 如 onclick="order(this)
2
function order(obj) {
var thisOrder = $(obj).parent();
var amount = $(thisOrder).find(‘#amount‘).val();
以上是关于获取页面上的数据的主要内容,如果未能解决你的问题,请参考以下文章