I want to format this date: <div id="date">23/05/2013</div>
.(我想格式化这个日期: <div id="date">23/05/2013</div>
。)
First I want to split the string at the first /
and have the rest in the next line.(首先,我想串在第一次分裂/
并在下一行的其余部分。) Next, I'd like to surround the first part in a <span>
tag, as follows:(接下来,我想在<span>
标记中包围第一部分,如下所示:)
<div id="date">
<span>23</span>
05/2013</div>
23 05/2013
What I did:(我做了什么:)
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script> <div id="date">23/05/2013</div> <script type="text/javascript"> $(document).ready(function() { $("#date").text().substring(0, 2) + '<br />'; }); </script>
See the JSFiddle .(见JSFiddle 。)
But this does not work.(但这不起作用。) Can someone help me with jQuery?(有人可以用jQuery帮我吗?)
ask by Mustapha Aoussar translate from so
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…