comparison default/node_modules/jquery/src/manipulation/wrapMap.js @ 0:1d038bc9b3d2 default tip

Up:default
author Liny <dev@neowd.com>
date Sat, 31 May 2025 09:21:51 +0800
parents
children
comparison
equal deleted inserted replaced
-1:000000000000 0:1d038bc9b3d2
1 define( function() {
2
3 "use strict";
4
5 // We have to close these tags to support XHTML (#13200)
6 var wrapMap = {
7
8 // Support: IE <=9 only
9 option: [ 1, "<select multiple='multiple'>", "</select>" ],
10
11 // XHTML parsers do not magically insert elements in the
12 // same way that tag soup parsers do. So we cannot shorten
13 // this by omitting <tbody> or other required elements.
14 thead: [ 1, "<table>", "</table>" ],
15 col: [ 2, "<table><colgroup>", "</colgroup></table>" ],
16 tr: [ 2, "<table><tbody>", "</tbody></table>" ],
17 td: [ 3, "<table><tbody><tr>", "</tr></tbody></table>" ],
18
19 _default: [ 0, "", "" ]
20 };
21
22 // Support: IE <=9 only
23 wrapMap.optgroup = wrapMap.option;
24
25 wrapMap.tbody = wrapMap.tfoot = wrapMap.colgroup = wrapMap.caption = wrapMap.thead;
26 wrapMap.th = wrapMap.td;
27
28 return wrapMap;
29 } );