TinyMCE TinyMCE 官網介紹Default 預設數字清單樣式如下: (官網介紹網址: https://www.tinymce.com/docs/plugins/advlist/ ) advlist_number_styles This option allows you to include specific ordered list item markers in the default numlist toolbar control. Type: String Default Value: "default,lower-alpha,lower-greek,lower-roman,upper-alpha,upper-roman" Possible Values: lower - alpha : lowercase ASCII letters, e.g. a, b, c, ... z lower - greek : lowercase classical Greek (alpha, beta, gamma), e.g. α, β, γ ... lower - roman : lowercase roman numerals, e.g. i, ii, iii, iv, v ... upper - alpha : uppercase ASCII letters, e.g. A, B, C, ... Z upper - roman : uppercase roman numerals, e.g. I, II, III, IV, V ... Example: tinymce . init ({ selector : "textarea" , // change this value according to your HTML plugins : "advlist" , advlist_number_styles : "lower-alpha" // only include lower alpha in list }); 直接在線上修改看看 先點到官網的範例,選用完整範例來修改 ...