HTML code to add quantity badge to message button

HTML code to add quantity badge to message button

HTML code:

<a onclick="goMessage();" style="width: 60px;height: 100%;color: white;background: transparent;" href="#" class="easyui-linkbutton" data-options="iconCls:'fa fa-bell-o fa-2x',size:'large',iconAlign:'top'">Message<span id="msgNum" class="ii">4</span></a>

CSS code:

/*Corner mark*/
    .ii{
        display: none;
        background: #f00;
        border-radius: 50%;
        width: 20px;
        height: 20px;
        top: 5px;
        right: 0px;
        position: absolute;
        text-align: center;
        color: #FFF;
        z-index: 99999;
    }

js code:

function ajaxa(){
         $.ajax({
                type:"POST",
                dataType : "json",
                async: false,
                url : "${pageContext.request.contextPath}/docinf/sendInform/lookForMsgNum.do",
                data : {},
                success : function(data){
                    if(data != null){
                        if(parseInt(data)>10){
                            $("#msgNum").show();
                            $("#msgNum").text(parseInt(data));
                        }else if(parseInt(data)> 0){
                            $("#msgNum").show();
                            $("#msgNum").text(parseInt(data));
                        }else{
                            $("#msgNum").hide();
                        }
                    }
                },
                error:function(){
                }
            });
    }

Result:

這里寫圖片描述

The above is the implementation code for adding quantity subscript to the message button in html introduced by the editor. I hope it will be helpful to everyone. If you have any questions, please leave me a message and the editor will reply to you in time. I would also like to thank everyone for their support of the 123WORDPRESS.COM website!

<<:  A detailed introduction to setting up Jenkins on Tencent Cloud Server

>>:  Example code for using CSS to darken the font color of the selected area when scrolling

Recommend

Detailed process of installing logstash in Docker

Edit docker-compose.yml and add the following con...

Web page experience: planning and design

1. Clarify the design direction <br />First,...

The simplest form implementation of Flexbox layout

Flexible layout (Flexbox) is becoming increasingl...

In-depth analysis of JDBC and MySQL temporary tablespace

background Temporary tablespaces are used to mana...

TCP third handshake data transmission process diagram

The process packets with the SYN flag in the RFC7...

Detailed installation instructions for the cloud server pagoda panel

Table of contents 0x01. Install the Pagoda Panel ...

Three.js sample code for implementing dewdrop animation effect

Preface Hello everyone, this is the CSS wizard - ...

Access the MySQL database by entering the DOS window through cmd under Windows

1. Press win + R and type cmd to enter the DOS wi...

How to quickly deploy an Elasticsearch cluster using docker

This article will use Docker containers (orchestr...

Two problems encountered when deploying rabbitmq with Docker

1. Background The following two problems are enco...

Understanding and solutions of 1px line in mobile development

Reasons why the 1px line becomes thicker When wor...

In-depth analysis of the Tomcat server of Centos 7 system

Table of contents 1. The origin of tomcat 1. Tomc...

The difference between Display, Visibility, Opacity, rgba and z-index: -1 in CSS

We often need to control the hidden, transparent ...

CentOS 7 switching boot kernel and switching boot mode explanation

centos7 switch boot kernel Note: If necessary, it...