我正在尝试将 JQuery 选择器中的变量与 Id 结合使用来选择正确的输入值,因为我有多种形式。如何同时使用变量和 id 选择器?
我的代码:
$("form").submit(function() {
var id = $(this).attr("id"); //this grabs the id of the form being submitted
var name = $("id #name").val(); <-- this is the line in question
});
谢谢!