我敢肯定这已经被问过很多次了,但我不确定什么对我有用。我很不识字,但正在努力。
我需要获取复选框值,以便我可以在服务器上处理它们。目前,我得到一个已选中的 POST 值,但没有得到未选中的 POST 值。有人可以告诉我如何获得未经检查的价值吗?
$(this).next()[0].checked = !$(this).next()[0].checked;
var vals = $(this).next().serializeArray();
我敢肯定这已经被问过很多次了,但我不确定什么对我有用。我很不识字,但正在努力。
我需要获取复选框值,以便我可以在服务器上处理它们。目前,我得到一个已选中的 POST 值,但没有得到未选中的 POST 值。有人可以告诉我如何获得未经检查的价值吗?
$(this).next()[0].checked = !$(this).next()[0].checked;
var vals = $(this).next().serializeArray();