我有div
其中我有幾個form
。我需要遍歷每個表單並從中獲取值。對於調試,我嘗試以下內容jquery如何迭代嵌套元素並獲得它們的值
$(document).on('submit', '.submit_button', function() {
$('#days_payment').children('form').each(function() {
console.log(this);
});
});
但它不工作,頁面重新加載並沒有打印到控制檯。
如何進行正確的循環?
你需要從提交停止你的表格 – j08691