文章详情

短信预约-IT技能 免费直播动态提醒

请输入下面的图形验证码

提交验证

短信预约提醒成功

怎么实现点击HTML页面问号出现提示框

2024-04-02 19:55

关注

今天小编给大家分享一下怎么实现点击HTML页面问号出现提示框的相关知识点,内容详细,逻辑清晰,相信大部分人都还太了解这方面的知识,所以分享这篇文章给大家参考一下,希望大家阅读完这篇文章后有所收获,下面我们一起来了解一下吧。

本demo的功能:点击页面按钮在其边缘出现提示信息,点击页面任何一处则消失。

如下图:
怎么实现点击HTML页面问号出现提示框

1.所需插件:
2.HTML内容:

==注意==:

  1. class="j-help-tips"这个class是核心,不可缺少。

  2. data-tips属性是必须的。

  3. data-tips属性中:type:"1"不用修改;

  4. data-tips属性中:txt内容即是要提示的内容。

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

19

20

21

22

23

24

25

26

27

28

29

30

31

32

<html>

    <head>

        <link rel="stylesheet" href="style.css"" type="text/css" />

    </head>

    

    <body>

        <div style="margin-top: 10%; margin-left: 10%;">

            <span class="testSpan">

                <i class="edi-icon j-help-tips" data-tips='{"type":"1","txt":"提示内容111..."}'>①</i>

            </span>

            

            <span style="margin: 30px;">

                <i class="edi-icon j-help-tips" data-tips='{"type":"1","txt":"提示内容222..."}'>②</i>

            </span>

            

            <span style="margin: 30px;">

                <i class="edi-icon j-help-tips" data-tips='{"type":"1","txt":"提示内容333..."}'>③</i>

            </span>

        </div>

    </body>

    

    <!-- jquery -->

    <script src="http://code.jquery.com/jquery-latest.js"></script>

    <!-- layer -->

    <script src="layer/layer.js" type="text/javascript"></script>

    <!-- 提示插件 -->

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

    

    <script>

        $(function(){            <!-- 页面初始化加载 -->

            var tips = new helpTips().init();

        })    </script></html>

3.css内容:(非必要)

1

2

3

4

5

6

7

8

9

10

.edi-icon {

    font-size: 18px;

    font-style: normal;

    -webkit-font-smoothing: antialiased;

    -webkit-text-stroke-width: .2px;

    -moz-osx-font-smoothing: grayscale;

    *display: inline;

    *zoom: 1;

    cursor: pointer;

}

4.javascript内容:(核心)

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

19

20

21

22

23

24

25

26

27

28

29

30

31

32

33

34

35

36

37

38

39

40

41

42

43

44

45

46

47

48

49

50

51

52

53

54

55

56

57

58

59

60

61

62

63

64

65

66

67

68

69

70

71

72

73

74

75

76

77

78

79

80

//定义提示弹出框;

var helpTipsLayer;

//定义弹出框的默认设置;

function helpTips(t) {

    this.options = {},

    this.options.elem = ".j-help-tips", //与页面class相对应;

    this.options.type = 1,

    this.options.color = "#8db3d7",

    this.options.time = 0, //设置0是提示弹出框不会自动消失;可设置为其他数字,以毫秒为单位;

    this.options.titleEnd = "录入提示",

    this.options.width = "600px",

    this.options.height = "",

    this.options.imgWidth = "233",

    this.options.imgHeight = "375",

    "undefined" != typeof t && (this.options = $.extend({}, this.options, t)),

    this.elemObj = $(this.options.elem)

}

!

function() {

    //点击页面任何一处可使提示弹出框消失;

    $(document).on("click", function(event){

        var e = event || window.event;

        var target = e.target || e.srcElement;

        var flag = $(target).hasClass("j-help-tips");

        if(helpTipsLayer && !flag){

            layer.close(helpTipsLayer);

        }

    })

}(), helpTips.prototype = {

    constructor : helpTips,

    init : function() {

        this.bindEvent()

    },

    bindEvent : function() {

        var t = this;

        t.elemObj.on("click", function() {

            layer.close(helpTipsLayer);//点击其他任意的提示框按钮,则关闭上一个提示框。

            var i = $(this),

                o = i.data("tips");

            if ("undefined" != typeof o && "undefined" != typeof o.type && 1 == o.type) {

                "undefined" != typeof o && "undefined" != typeof o.txt ? helpTipsLayer = layer.tips(o.txt, i, {

                    tips : [ t.options.type, t.options.color ],

                    time : t.options.time

                }) : t.log()

            } else {

                if ("undefined" != typeof o.title && "undefined" != typeof o.txt && "undefined" != typeof o.img) {

                    var e = '<p class="m-popup-ct">',

                        n = '<h4 class="tt"><span class="txt_01">' + o.title + t.options.titleEnd + '</span></h4><p class="line_01"></p>',

                        s = "</p>",

                        l = '<ul class="u-explain-list">',

                        p = o.txt.split("|"),

                        a = p.length;

                    a > 0 && $.each(p, function(t, i) {

                        l += '<li><i class="f-mr5">' + (t + 1) + "</i>" + i + "</li>"

                    });

                    var r = /^[1-9][\d]{0,2}$/,

                        c = t.options.imgWidth,

                        d = t.options.imgHeight;

                    "undefined" != typeof o.w && "undefined" != typeof o.h && r.test(o.w) && r.test(o.h) && (c = o.w, d = o.h), l += '<li><i class="f-mr5">' + (a + 1) + "</i><img src=" + o.img + ' width="' + c + '" height="' + d + '"/></li>', l += "</ul>";

                    var h = e + n + l + s;

                    layer.open({

                        title : !1,

                        type : 1,

                        area : [ t.options.width, t.options.height ],

                        shadeClose : !0,

                        maxmin : !1,

                        move : !1,

                        scrollbar : !1,

                        content : h

                    })

                } else {

                    t.log()

                }

            }

        })

    },

    log : function() {

        console.log("请给定提示标题|文字|图片---来自[script.js]函数[helpTips]")

    }

};

以上就是“怎么实现点击HTML页面问号出现提示框”这篇文章的所有内容,感谢各位的阅读!相信大家阅读完这篇文章都有很大的收获,小编每天都会为大家更新不同的知识,如果还想学习更多的知识,请关注编程网行业资讯频道。

阅读原文内容投诉

免责声明:

① 本站未注明“稿件来源”的信息均来自网络整理。其文字、图片和音视频稿件的所属权归原作者所有。本站收集整理出于非商业性的教育和科研之目的,并不意味着本站赞同其观点或证实其内容的真实性。仅作为临时的测试数据,供内部测试之用。本站并未授权任何人以任何方式主动获取本站任何信息。

② 本站未注明“稿件来源”的临时测试数据将在测试完成后最终做删除处理。有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341

软考中级精品资料免费领

  • 历年真题答案解析
  • 备考技巧名师总结
  • 高频考点精准押题
  • 2024年上半年信息系统项目管理师第二批次真题及答案解析(完整版)

    难度     807人已做
    查看
  • 【考后总结】2024年5月26日信息系统项目管理师第2批次考情分析

    难度     351人已做
    查看
  • 【考后总结】2024年5月25日信息系统项目管理师第1批次考情分析

    难度     314人已做
    查看
  • 2024年上半年软考高项第一、二批次真题考点汇总(完整版)

    难度     433人已做
    查看
  • 2024年上半年系统架构设计师考试综合知识真题

    难度     221人已做
    查看

相关文章

发现更多好内容

猜你喜欢

AI推送时光机
位置:首页-资讯-前端开发
咦!没有更多了?去看看其它编程学习网 内容吧
首页课程
资料下载
问答资讯