当前位置: 软件>JavaScript软件
jQuery消息提醒插件 jQuery Notty
本文导语: jQuery Notty 是一个 jQuery 的消息提醒插件。该插件将在屏幕右上角显示如下提示信息 示例代码: $(document).ready(function(){ $('#sample1').click({ $.notty({ title : 'Title', content : 'This is a notification' ...
jQuery Notty 是一个 jQuery 的消息提醒插件。该插件将在屏幕右上角显示如下提示信息
示例代码:
$(document).ready(function(){
$('#sample1').click({
$.notty({
title : 'Title',
content : 'This is a notification'
});
});
});