我有以下代码。我不确定为什么 myData 数组在 console.log 中为空,因为 inputValue 和 inputName 不为空,我可以在日志中看到它们
var myData = new Array();
$("#myelement :input").each(function(){
var inputValue = $(this).val();
var inputName = $(this).attr('id');
console.log(inputValue, inputName);
myData.push=inputName;
myData.push=inputValue;
console.log(myData);
});