jquery jConfirm

这个Jquery插件的目的是替代JavaScript的标准函数alert(),confirm(),和 prompt()。这个插件有

如下这些特点:

  1:这个插件可以使你可以支持你自己的css制定。使你的网站看起来更专业。

   2:允许你自定义对话框的标题。

  3:在IE7中,可以使你避免使用JavaScript 的prompt()函数带来的页面重新加载。

   4:这些方法都模拟了Windows的模式对话框。在你改变改变浏览器窗口大小时候,它能够自适应用户

窗口的调整。

   5:如果你引入了jQuery UI Draggable plugin插件,那这个插件也可以被自由拖动。

先在这里说插件的下载地址,以供有需之人下载:

http://labs.abeautifulsite.net/projects/js/jquery/alerts/jquery.alerts-1.1.zip

一:首先在导入JQuery,jquery.ui.draggable

和jquery.alerts的 css、js文件。

<script src="/path/to/jquery.js" type="text/javascript">script>

<script src="/path/to/jquery.ui.draggable.js" type="text/javascript">script>

<script src="/path/to/jquery.alerts.js" type="text/javascript">script>

<link href="/path/to/jquery.alerts.css" rel="stylesheet" type="text/css" media="screen" />

为了在iE中正确的使用alert插件,你还得在Page中加入何时DTD:

http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

二:使用

我们可以用下列方式来使用这个Jquery插件。

jAlert(message, [title, callback]) jConfirm(message, [title, callback]) jPrompt(message, [value, title, callback])

注:不同于Javascript标准函数,我们可以在message中使用HTML参数显示你的提示信息。

三:兼容性:

alert插件要求我们必须使用JQuery1.2.6或以上的jQuery包。

已经被测试能够在IE6、IE7、FF2、FF3、Safari 3 、Chrome 、Opera 9浏览器上很好的运行。

 

四:用例

 





JQuery插件:alert、confirm、prompt对话框插件 - 分享JavaScript-sharejs.com

		
		
		
		
		
		
		
		
		
		
		
		
	
	
	
		
		

« jQuery Alert Dialogs (Alert, Confirm, & Prompt Replacements)

基本范例

Alert
jAlert('This is a custom alert box', 'Alert Dialog');

Confirm
jConfirm('Can you confirm this?', 'Confirmation Dialog', function(r) {
   if (r)
	{
		jAlert('Confirmed: ' + r, 'Confirmation Results');

	}
  
});

Prompt
jPrompt('Type something:', 'Prefilled value', 'Prompt Dialog', function(r) {
    if( r ) alert('You entered ' + r);
});

高级范例

对话框带HTML代码
jAlert('You can use HTML, such as bold, italics, and underline!');

Alternate Styles

By changing the value of the $.alerts.dialogClass property (and creating your own CSS class), you can changes the style of your dialogs:

View the plugin source for additional properties that can be modifed at runtime.

Back to the project page



获取更多JavaScript代码,请登录JavaScript分享网 http://www.sharejs.com

 

你可能感兴趣的:(jquery,js)