jquery 遍历所有子节点并对其操作
页面中有10个div每个div都如下<divclass="rows"><pstyle="float:left"><ahref="">名称</a></p><pstyle="...
页面中有10个div 每个div都如下
<div class="rows">
<p style="float:left"><a href="">名称</a></p>
<p style="float:right"><a href="">2015-05-11</a></p>
</div>
我想把每个时间:2015-05-11 截取字符串为 05-11
应该怎样写
谢谢! 展开
<div class="rows">
<p style="float:left"><a href="">名称</a></p>
<p style="float:right"><a href="">2015-05-11</a></p>
</div>
我想把每个时间:2015-05-11 截取字符串为 05-11
应该怎样写
谢谢! 展开
1个回答
2015-05-12
展开全部
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<script class="jquery library" src="/js/sandbox/jquery/jquery-1.8.2.min.js" type="text/javascript"></script>
<title>
RunJS 演示代码
</title>
<style>
div.rows {
width: 100%;
height: 50px;
}
</style>
<script>
jQuery(function($){
$("div.rows>p:nth-child(2)>a").each(function(i,dom){
var me = $(this), txt = me.text();
me.text(txt.replace(/\d+[^\d](.*)/, '$1'));
});
});
</script>
</head>
<body>
<div class="rows">
<p style="float:left">
<a href="">
名称1
</a>
</p>
<p style="float:right">
<a href="">
2015-05-11
</a>
</p>
</div>
<div class="rows">
<p style="float:left">
<a href="">
名称2
</a>
</p>
<p style="float:right">
<a href="">
2012-03-11
</a>
</p>
</div>
</body>
</html>
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询