how to reset a form in jquery mobile?
方法一
$('input{type="button"]').click(function(e) {
e.preventDefault(); // prevent normal button action
$('input').not('[type="button"]').val(''); // clear inputs except buttons, setting value to blank
$('select').val(''); // clear select
$('textarea').val(''); // set text area value to blank
})
http://appcropolis.com/blog/css3/advanced-customization-jquery-mobile-buttons/






