jQuery implements article collapse and expansion functions

jQuery implements article collapse and expansion functions

This article example shares the specific code of jQuery to realize the article collapse and expansion functions for your reference. The specific content is as follows

Without further ado, let's get straight to the code

<!DOCTYPE html>
<html lang="en">
 <head>
  <meta charset="UTF-8">
  <title>Article</title>
 </head>
 <body>
  <div>
   <p>Article collapse and expansion function</p>
   <div class="item">
    <div>
     <div style="color: #409EFF;">Exceeds word limit</div>
     <span class="article">
      MQTT is a lightweight, proxy-based publish/subscribe message transmission protocol designed to be open, simple, lightweight, and easy to implement.
      These features make it suitable for use in constrained environments. Networks are expensive, have low bandwidth, and are unreliable.
      Running on embedded devices with limited processor and memory resources. The features of this agreement are:
      Use the publish/subscribe messaging model to provide one-to-many message publishing and decouple applications.
      Message transmission with payload content shielded.
      Provides network connectivity using TCP/IP.
     </span>
     <span class="see" style="color: #409EFF;"></span>
    </div>
   </div>
   <br />
   <div class="item">
    <div>
     <div style="color: #409EFF;">Does not exceed the word count</div>
     <span class="article">ABCDEFGHIJKLNMOPQRSTUVWXYZ</span>
     <span class="see" style="color: #409EFF;"></span>
    </div>
   </div>
   <br />
   <div class="item">
    <div>
     <div style="color: #409EFF;">Exceeds word limit</div>
     <span class="article">
      The correctness of MOS directly affects the normal use of the hard disk, mainly referring to the hard disk type.
      Fortunately, current machines all support the "IDE auto detect" function, which can automatically detect the type of hard disk.
      When you connect a new hard disk or replace the hard disk with a new one, you need to use this function to reset the type.
      Of course, some types of motherboards now can automatically identify the type of hard drive.
      When the hard disk type is wrong, sometimes the system cannot be started at all, and sometimes it can be started but read and write errors will occur.
     </span>
     <span class="see" style="color: #409EFF;"></span>
    </div>
   </div>
  </div>
 </body>
 <script src="http://libs.baidu.com/jquery/2.0.0/jquery.min.js"></script>
 <script type="text/javascript">
  $(document).ready(function(){
   //Record the current status of the article var onoff = false;
   //Use $().each to traverse and set each article$('.item').each(function() {
    //Use $(this).find() to get the current article DOM
    var article = $(this).find('.article');
    //Get the article content var str = article.text();
    //Use $(this).find() to get the expanded and collapsed DOM
    var see = $(this).find('.see');
    //When the article has more than 50 words, only the first 50 words are displayed if (str.length > 50) {
     article.text(str.substr(0, 50) + '......');
     see.text('[View]'); //Display the view button at the end of the article}
    //Set button listener see.click(function() {
     if (onoff) {
      article.text(str.substr(0, 50) + '......');
      see.text('[View]');
     } else {
      article.text(str);
      see.text('[收起]');
     }
     onoff = !onoff
    });
   });
  });
 </script>
</html> 

The above is the full content of this article. I hope it will be helpful for everyone’s study. I also hope that everyone will support 123WORDPRESS.COM.

You may also be interested in:
  • Example of page detail expansion and collapse function implemented by jQuery

<<:  How to configure Bash environment variables in Linux

>>:  Using jQuery to implement the carousel effect

Recommend

Using Docker run options to override settings in the Dockerfile

Usually, we first define the Dockerfile file, and...

Commonly used JavaScript array methods

Table of contents 1. filter() 2. forEach() 3. som...

WePY cloud development practice in Linux command query applet

Hello everyone, today I will share with you the W...

Simply understand the writing and execution order of MySQL statements

There is a big difference between the writing ord...

SQL Practice Exercise: Online Mall Database User Information Data Operation

Online shopping mall database-user information da...

Detailed steps for Linux account file control management

In the Linux system, in addition to various accou...

Example of ellipsis when CSS multi-line text overflows

Ellipses appear when multi-line text overflows Th...

Call and execute host docker operations in docker container

First of all, this post is dedicated to Docker no...

Steps to install GRUB on Linux server

How to Install GRUB for Linux Server You cannot u...

SQL function to merge a field together

Recently, I need to query all the fields in a rel...

Simple Implementation of HTML to Create Personal Resume

Resume Code: XML/HTML CodeCopy content to clipboa...

MySQL 8.0.16 installation and configuration tutorial under Windows 10

This article shares with you the graphic tutorial...

Summary of block-level elements, inline elements, and variable elements

Block element p - paragraph pre - format text tabl...

How to manually upgrade the kernel in deepin linux

deepin and Ubuntu are both distributions based on...

Vue3+TypeScript encapsulates axios and implements request calls

No way, no way, it turns out that there are peopl...