I am trying to create a json object from variables that I am getting in a form.
var firstName = $('#firstName').val();
var lastName = $('#lastName').val();
var phone = $('#phoneNumber').val();
var address = $('#address').val();
So far I have the code below but it will not validate or work. Im new to this, please help!
Changing var to this:
var jsonObject =
{
firstName: firstName,
lastName: lastName,
phoneNumber:phoneNumber,
address:address
}
in JSONlint i am getting this error:
Parse error on line 1:
varjsonObject={
^
Expecting '{', '['
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…