使用jQuery遍历某几个class的元素并修改text内容,有简便方法吗?
4个回答
展开全部
$(".xinghao").each(function () {
alert($(this).text());
});
alert($(this).text());
});
本回答被网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
$("div.xinghao").each(function(){
switch($(this).text()){
case "1" :
$(this).text("型号一");
break;
case "2" :
$(this).text("型号二");
break;
case "3" :
$(this).text("型号三");
break;
}
});
switch($(this).text()){
case "1" :
$(this).text("型号一");
break;
case "2" :
$(this).text("型号二");
break;
case "3" :
$(this).text("型号三");
break;
}
});
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
.each()是jquery遍历函数
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html;charset=UTF-8">
</head>
<body>
<div class="xinghao">1</div>
<div class="xinghao">2</div>
<div class="xinghao">3</div>
<script src="js/jquery-1.7.2.min.js" type="text/javascript"></script>
<script type="text/javascript">
var num = $('.xinghao');
for(i=0;i<num.length;i++)
{
num.eq(i).text('型号'+ (i+1))
}
</script>
</body>
</html>
<!-- 补充说明:请修改Jquery库路径后运行代码-->
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html;charset=UTF-8">
</head>
<body>
<div class="xinghao">1</div>
<div class="xinghao">2</div>
<div class="xinghao">3</div>
<script src="js/jquery-1.7.2.min.js" type="text/javascript"></script>
<script type="text/javascript">
var num = $('.xinghao');
for(i=0;i<num.length;i++)
{
num.eq(i).text('型号'+ (i+1))
}
</script>
</body>
</html>
<!-- 补充说明:请修改Jquery库路径后运行代码-->
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询