Detailed explanation of the example of implementing the quantity subscript on the message button in HTML

Y2J
Release: 2017-05-22 10:12:56
Original
2864 people have browsed it

This article mainly introduces the implementation code of adding quantity subscripts on the message button in HTML. Friends who need it can refer to the

html code:


消息4
Copy after login

css code:

/*角标 */
    .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;
    }
Copy after login

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(){
                }
            });
    }
Copy after login

Achievement effect:

Detailed explanation of the example of implementing the quantity subscript on the message button in HTML

##[Related recommendations]

1.

HTML free video tutorial

2.

Html Jquery code example to complete asynchronous file upload

3.

Yes Graphical explanation of HTTP Headers knowledge points

4.

Detailed explanation of Html5 datalist tags and dynamic matching with background data

5.

Share a super Comprehensive summary of HTML and CSS knowledge points

The above is the detailed content of Detailed explanation of the example of implementing the quantity subscript on the message button in HTML. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!