$.fn.tips = function(options) { var defaults = { title : '提示信息', message : '这是内容,参数为{message:内容}', tips : '如果是请点击确定按钮 ,否则请点取消。', timeout : 1000, submitText : '确定', cancleText : '取消', confirm : function(e){}, cancel : function(e){} }; var js=document.scripts; var jsPath = ''; for(var i=0;i-1) { jsPath=js[i].src.substring(0,js[i].src.lastIndexOf("/")+1); } } var eleId = 'tips_'+ Math.round(Math.random() * 99 +1); var opts = $.extend({},defaults,options); var html = ''; html += '
'; html += '
'+ opts.title +'
'; html += '
'; html += ' '; html += '
'; html += '

'+ opts.message +'

'; html += ' '+ opts.tips +''; html += '
'; html += '
'; html += '
'; html += '  '; html += ' '; html += '
'; html += '
'; $('#' + eleId).remove(); $('body').append(html); $('#'+ eleId).fadeIn(200); $(".tip").fadeIn(200); $('#' + eleId).find('[data-mod=confirm]').bind('click',function(e){ opts.confirm(e); $('#' + eleId).remove(); }); $('#' + eleId).find('[data-mod=cancel]').bind('click',function(e){ opts.cancel(e); $('#' + eleId).remove(); }); }