有一个表单,在提交时,我将其转换为序列化字符串,以便通过ajax提交表单。
var data = $$.serialize();
现在有一个名为' title'的输入字段。我希望得到它的价值来展示一条信息。所以我正在寻找一种方法来做到这一点。我试过了;
alert(data.name);
但发现它不是方法。
更新
答案 0 :(得分:8)
你根本不需要jQuery。就这样做:
$('#frmEditTab').submit(function(e){
e.preventDefault();
var title = this.title; //get the input named "title" of the form
alert(title.value); //alerts the value of that input
});