Network Security Internet Technology Development Database Servers Mobile Phone Android Software Apple Software Computer Software News IT Information

In addition to Weibo, there is also WeChat

Please pay attention

WeChat public account

Shulou

How to realize the function of pop-up window with jquery

2025-04-14 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Development >

Share

Shulou(Shulou.com)06/01 Report--

In this article, the editor introduces in detail "how to achieve the pop-up window function in jquery". The content is detailed, the steps are clear, and the details are handled properly. I hope this article "how to achieve the pop-up window function in jquery" can help you solve your doubts.

Effect picture:

The code is as follows:

Test that the pop-up confirmation box is always in the middle of the window. Mask {position: fixed; top: 0; width: 100%; height: 100%; background: # 000; opacity: 0.5; filter: alpha (opacity=50); display: none; z-index: 99;}. Mess {position: absolute; display: none; width: 250px; height: 100px; border: 1px solid # ccc; background: # ececec; text-align: center; z-index: 101 } $(document) .ready (function () {$('.btn') .click (function () {$('.mask'). Css ({'display':' block'}); center ($('.mess')); check ($(this) .parent (), $('.btn1'), $('.btn2'));}); / / centered function center (obj) {var screenWidth = $(window). Width (); screenHeight = $(window). Height () / / the width and height of the current browser window var scrolltop = $(document). ScrollTop (); / / get the height of the current window from the top of the page var objLeft = (screenWidth-obj.width ()) / 2; var objTop = (screenHeight-obj.height ()) / 2 + scrolltop;obj.css ({left: objLeft + 'px', top: objTop +' px','display': 'block'}) / / $(window) .resize (function () {screenWidth = $(window). Width (); screenHeight = $(window). Height (); scrolltop = $(document). ScrollTop (); objLeft = (screenWidth-obj.width ()) / 2; objTop = (screenHeight-obj.height ()) / 2 + scrolltop;obj.css ({left: objLeft + 'px', top: objTop +' px','display': 'block'});}) / / Operation when the browser has scroll bars, $(window) .operations (function () {screenWidth = $(window). Width (); screenHeight = $(widow). Height (); scrolltop = $(document). ScrollTop (); objLeft = (screenWidth-obj.width ()) / 2; objTop = (screenHeight-obj.height ()) / 2 + scrolltop;obj.css ({left: objLeft + 'px', top: objTop +' px','display': 'block'});}) } / / confirm the cancelled operation function check (obj, obj1, obj2) {obj1.click (function () {obj.remove (); closed ($('.mask'), $('.mess'));}); obj2.click (function () {closed ($('.mask), $(' .mess'));});} / / Hidden operation function closed (obj1, obj2) {obj1.hide (); obj2.hide ();}) Test that the pop-up confirmation box is always in the middle of the window

Are you sure you want to delete?

After reading this, the article "how to achieve the pop-up window function of jquery" has been introduced. If you want to master the knowledge points of this article, you still need to practice and use it yourself to understand it. If you want to know more about related articles, you are welcome to follow the industry information channel.

Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.

Views: 284

*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.

Share To

Development

Wechat

© 2024 shulou.com SLNews company. All rights reserved.

12
Report