码迷,mamicode.com
首页 > Web开发 > 详细

jQuery 价格显示 前面位数与后面两位显示不同样式(一大一小)

时间:2017-11-01 13:36:42      阅读:217      评论:0      收藏:0      [点我收藏+]

标签:text   highlight   价格   pre   png   asc   logs   log   utf-8   

<!DOCTYPE html>
<html lang="en">
<head>
	<meta charset="UTF-8">
	<title>价格显示</title>
	<script src="scripts/jquery-1.7.1.min.js"></script>
</head>
<body>
<script type="text/javascript"> 
$(function(){
// 价格显示
    $(".index_price").each(function(){
        $(this).html(‘<span class="big_price">‘ + $(this).html().split(‘.‘).join(‘.</span><span class="small_price">‘)  + ‘</span>‘);
    });
})
</script> 
<span>¥</span><span class="index_price">987.88</span>
<style>
.big_price {font-size:20px;}
.small_price {font-size:14px;}
</style>
</body>
</html>

  技术分享

 

jQuery 价格显示 前面位数与后面两位显示不同样式(一大一小)

标签:text   highlight   价格   pre   png   asc   logs   log   utf-8   

原文地址:http://www.cnblogs.com/arealy/p/7765642.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!