xxb/module/user/js/changepassword.js
2023-10-23 15:51:36 +08:00

8 lines
170 B
JavaScript

$(document).ready(function()
{
$.setAjaxForm('#passwordForm', function(response)
{
if('success' == response.result) window.location.reload();
});
});