文章列表
//dialog脚本定义
define(['jquery', 'jqueryUI'], function($) {
var self = function(options) {
var msg;
if (!self.uiDialog) {
self.uiDialog = $('<div title="提示"></div>').appendTo('body');
self.uiDialog.dialog({
autoO ...
/**验证码生成后台方法*/
@RequestMapping(value = "/losepassword/getvalidatecode",method = RequestMethod.GET)
public void getVerificationCode(HttpServletRequest request,HttpServletResponse response){
int width = 64;
int height = 24;
GraphicsEnvironment environment = GraphicsEnvironment.getLo ...