标签:margin func strong 获取 转换 col size color cti
在<script>中:
$(function(){
var num=$(".price").length;/*获取应用了class="price"的标签数量*/
for(var i=0;i<num;i++){
if($(".price")[i].innerText!="")
$(".price")[i].innerText=parseInt($(".price")[i].innerText).toFixed(2);/*要先将文本值转换为int型,再格式化*/
}
});
在网页中:
<span class="price">200</span>
<span class="price">400.9</span>
<span class="price">200.3897</span>
标签:margin func strong 获取 转换 col size color cti
原文地址:https://www.cnblogs.com/Meiwah/p/10789536.html