I have a form, and a submit handler in jQuery.
When the user submits the form, I want to modify (add) some parameters to the POST request, before it is despatched from the client to the server.
i.e.
- User clicks 'submit'
- My jQuery submit hander begins execution...
- I create some new key/value pairs and add them to the POST payload
At the moment, it looks like my only options are to use $.post()
, or $('form').append('<input type="hidden" name=... value=...');
Thanks for any help.
Edit: I've already attached a submit handler to the form; I'm trying to edit the post vars in between the user clicking the submit button, and the request being sent to the server.
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…