How to handle long data when displaying it in html

How to handle long data when displaying it in html
When displaying long data in HTML, you can cut off the data and display the complete data when the mouse moves over it.
For example, consider the following situation.

accomplish:

Copy code
The code is as follows:

<a title="${siteBoardInfoList.boardUrl}">
<c:if test="${fn:length(siteBoardInfoList.boardUrl) >= 40}">
${fn:substring(siteBoardInfoList.boardUrl,0,20)}......${fn:substring(siteBoardInfoList.boardUrl,fn:length(siteBoardInfoList.boardUrl)-21,fn:length(siteBoardInfoList.boardUrl))}
</c:if>
<c:if test="${fn:length(siteBoardInfoList.boardUrl) < 40}">
${siteBoardInfoList.boardUrl}
</c:if>
</a>

<<:  How to implement digital paging effect code and steps in CSS

>>:  Summary of the dockerfile-maven-plugin usage guide

Recommend

Docker deploys net5 program to achieve cross-platform functions

Deployment environment: docker container, liunx s...

Use vertical-align to align input and img

Putting input and img on the same line, the img ta...

How to install mongodb 4.2 using yum on centos8

1. Make a repo file Refer to the official install...

How to check PCIe version and speed in Linux

PCIE has four different specifications. Let’s tak...

Implementation of CSS sticky footer classic layout

What is a sticky footer layout? Our common web pa...

How to build a SOLO personal blog from scratch using Docker

Table of contents 1. Environmental Preparation 2....

Detailed explanation of the use of Vue3 state management

Table of contents background Provide / Inject Ext...

Sending emails in html is easy with Mailto

Recently, I added a click-to-send email function t...

WeChat applet implements calculator function

WeChat Mini Programs are becoming more and more p...

Exploring the practical value of the CSS property *-gradient

Let me first introduce an interesting property - ...

MySQL compression usage scenarios and solutions

Introduction Describes the use cases and solution...

JavaScript selector functions querySelector and querySelectorAll

Table of contents 1. querySelector queries a sing...