Discussion on the numerical limit of the ol element in the html document

Discussion on the numerical limit of the ol element in the html document

Generally speaking, it is unlikely that you will encounter extremely large <ol> lists in HTML documents, and this article is purely a technical discussion.

I happened to come across this problem and tested it.

The measured limit is [-2147483648, 2147483647], which is [- 2^31 ~ 2^31 - 1]

There are slight differences between browsers.

In IE10 and Firefox, after the serial number reaches the maximum positive value 2147483647, the serial numbers of subsequent list items are all the same as the maximum positive value 2147483647 and remain unchanged.

2147483645.
2147483646.b
2147483647.c
2147483647.d
2147483647.e
2147483647.f

On Chrome, after the serial number reaches the maximum positive value of 2147483647, the next serial number will become the maximum negative value -2147483648, and the subsequent serial numbers will increase on this basis by -2147483647, -2147483646,...

2147483645.
2147483646.b
2147483647.c
-2147483648.d
-2147483647.e
-2147483646.f

<<:  About the startup error caused by incompatibility between vmware workstations and device/credential

>>:  How to use CSS style to vertically center the font in the table

Recommend

HTML simple web form creation example introduction

<input> is used to collect user information ...

Details of the underlying data structure of MySQL indexes

Table of contents 1. Index Type 1. B+ Tree 2. Wha...

Sharing some wonderful uses of wxs files in WeChat applet

Table of contents Preface application Filters Dra...

Understanding and using callback functions in JavaScript

Table of contents Overview What are callbacks or ...

JS deep and shallow copy details

Table of contents 1. What does shallow copy mean?...

Front-end JavaScript Promise

Table of contents 1. What is Promise 2. Basic usa...

HTML+CSS div solution when relative width and absolute width conflict

Div solution when relative width and absolute wid...

Vue implements file upload and download functions

This article example shares the specific code of ...

How to completely uninstall iis7 web and ftp services in win7

After I set up the PHP development environment on...

Mini Program implements list countdown function

This article example shares the specific code for...

Detailed explanation of Axios asynchronous communication in Vue

1. First, we create a .json file for interactive ...