推动这份 proposal 看来还是要靠国人
Intl.CounterFormat
ECMAScript Proposal, specs, and reference implementation for
Intl.CounterFormat
.
Authors: @Aleen
This proposal is currently drafted, and not in any stage of the process.
Motivation
The W3C organization has introduced "CSS Counter Styles Level 3" in the specification, which has extended many internal counter formats related to an international format like simp-chinese-informal
:
<ol style="list-style-type: simp-chinese-informal">
<li>one</li>
<li>two</li>
<li>three</li>
</ol>
However, when I want to simulate these custom styles with JavaScript to make it more compatible with older browsers like Internet Explorer, or anyone else, I need to depend on an external library, like @jsamr/counter-style
, rather than an internal standard JavaScript implementation.
Syntax
new Intl.NumberFormat(counterStyles)
Parameters
counterStyles
: to specify which standard counter styles you want to use.
Returns
- Returns a new object, which can be used to format an output string.
Usage
const formatter1 = new Intl.CounterFormat('decimal');
console.log(formatter1.format(1)); // => "1"
const formatter2 = new Intl.CounterFormat('lower-roman');
console.log(formatter2.format(1)); // => "i"
const formatter3 = new Intl.CounterFormat('lower-alpha');
console.log(formatter3.format(1)); // => "a"
const formatter4 = new Intl.CounterFormat('simp-chinese-informal');
console.log(formatter4.format(1)); // => "一"
FAQ
-
What is the limited range?
A:
[-2147483647, 2147483647]
, which has been tested via HTML:<ol start="2147483647"> <li>one</li> <!-- 2147483647. one --> <li>two</li> <!-- 2147483647. two --> <li>three</li> <!-- 2147483647. three --> </ol>
-
Should we consider the prefix or suffix?
A: What we mainly need is the formatted counter string, rather than the prefix or the suffix, which can be easily joined with a string literal. It means the formatter should not output a fixed prefix or suffix like
a.
, or一、
, buta
, or一
.
Notice: If you have any suggestions or ideas about this proposal? Appreciate your discussions via issues.
转载自:https://juejin.cn/post/7187327638431039546