jquery ajax弹窗提示,jquery实现弹窗(系统提示框)效果

本文介绍了如何使用jQuery创建一个具有弹窗效果的系统提示框,包括样式设置、事件监听等,帮助用户实现友好的交互体验。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

本文实例为大家分享了jquery实现系统提示框的具体代码,供大家参考,具体内容如下

弹窗效果

*{ margin: 0;padding: 0;list-style: none}

.mask{background-color:rgba(0,0,0,0.2); width:100%; height:100%;position:fixed;top:0;left:0;}

.prompt_box{width:400px;height:200px;background:#ffffff;border-radius:6px;

position:fixed;top:25%; left:50%; margin-left:-200px;overflow: hidden;}

.prompt_box .prompt_title{height:40px;line-height:40px;padding-left:20px;border-bottom:2px solid #1a9ebf;background:#e6e6e6;position: relative;}

.prompt_box .prompt_title h3{font-size:16px;color: #333333; margin-top:0;}

.prompt_box .prompt_cancel{width:24px;height:24px;background: url("img/cancel.png") no-repeat;position: absolute;right:0;top:0;}

.prompt_box .prompt_cont{position: relative;height:158px;}

.prompt_box .prompt_cont .prompt_text{line-height:140px;padding-left:100px;}

.prompt_box .prompt_cont .prompt_sure{position: absolute;right:20px;bottom:34px;

width:50px;height: 26px;background:#1a9ebf;border-radius:5px;color:#ffffff;

font-size: 14px;line-height:26px;text-align: center;}

.hide{display:none;}

.show{display:block;}

系统提示

输入有误,请重新输入!

确定

$(function () {

(function () {

//////////////////////////弹窗效果////////////////////////////////

$('#btn').click(function () {

$('.prompt_text').text('输入有误,请重新输入!');

$('.mask').removeClass('hide');

})

$('.prompt_sure,.prompt_cancel').click(function () {

$('.mask').addClass('hide');

})

})();

});

效果图显示:

f3560a9b1a6f568fbcd51ad5bcda9ace.png

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持脚本之家。

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值