我想用js或者jquery 批量替换一个字符串

源代码<divclass="demo1"style="height:auto;min-height:0px;width:1500px;color:red;“>内容1</d... 源代码
<div class="demo1" style="height: auto; min-height: 0px; width: 1500px; color:red; “>内容1</div>
<div class="demo1" style="height: auto; min-height: 0px; width: 1500px; color:red; “>内容2</div>
<div class="demo2" style="height: auto; min-height: 0px; width: 1500px; color:red; “>内容3</div>
我想用js或者jquery 批量替换所有的 1500px 为1000px
有的div 不带 class="demo2" 和 id 选择器
展开
 我来答
百度网友2571d37bb
2015-07-22 · 知道合伙人软件行家
百度网友2571d37bb
知道合伙人软件行家
采纳数:1971 获赞数:7905
前端工程师

向TA提问 私信TA
展开全部
var str = '<div class="demo1" style="height: auto; min-height: 0px; width: 1500px; color:red; “>内容1</div>'+
'<div class="demo1" style="height: auto; min-height: 0px; width: 1500px; color:red; “>内容2</div>'+
<div class="demo2" style="height: auto; min-height: 0px; width: 1500px; color:red; “>内容3</div>'
str = str.replace(/width\:\s*(\d)+/g,'width: 1000');
这样后str就是替换后的结果
追问
var str =?
我要替换整个网页中所有出现width: 1500px的div 不仅仅是这几个div
追答
str就是一个变量~~
你可以把所有的html都放到里面
豆芽君93
2015-07-22 · TA获得超过165个赞
知道小有建树答主
回答量:122
采纳率:0%
帮助的人:141万
展开全部
$("div").css("width","1000px");
追问
这种写法不行,你这样所有的div 都加了width","1000px" 我不是要添加,是要替换已有的
追答
$("div").each(function(){
if($(this).width() == 1500){
$(this).css("width","1000px");
}
});
有1500的就替换掉
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式