jquery读取xml格式

<spancolor="red"fontsize="20">sdfsdd</span>在xml<span>标签中添加color等属性在jquery中怎么编写呢有知道的朋友... <span color="red" fontsize="20">sdfsdd</span> 在xml<span> 标签中添加 color等属性 在jquery中怎么编写呢 有知道的朋友吗 谢谢 展开
 我来答
前端报错
2014-01-06 · 前端开发技术分享,分析
前端报错
采纳数:1573 获赞数:7026

向TA提问 私信TA
展开全部
$('<span color="red" fontsize="20">sdfsdd</span>').attr('color','red');

或者

$('span').attr('color','red');

选择哪一个看你这段代码所处的上线文,你交代的不清楚,我不能为你选择了。

追问
不是这样子的 我的意思是  可以随意的改变xml标签里面的属性值 可以是color=“red” 可以color=“yellow”等等  你这样写的话不就是只能是红色了嘛 
var location = $(this).find("loc").text();
现在是xml 标签 怎么在里面写属性呢 在jquery里面怎么编程 谢谢
追答
$(elem).attr('color','yellow');//这样不就是设置为黄色了吗?

atrr()方法接收两个参数,前一个是属性名,后一个是属性值。属性值你可以传入一个预设好的变量。

给你写了个Demo,你灵活运用啊。

本回答被网友采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
匿名用户
推荐于2016-07-15
展开全部

大部分项目如果使用ajax请求,返回数据格式基本上都是json格式;

下面就以实际项目为例进行xml格式数据的分析。

<?xml version="1.0" encoding="UTF-8" ?>
<uncommon-spells>
<uncommon-spell name='a' hasWord='1'>
<uncommon-word name="奡"/>
<uncommon-word name="靉"/>
<uncommon-word name="叆"/>
</uncommon-spell>
<uncommon-spell name='b' hasWord='1'>
<uncommon-word name="仌"/>
<uncommon-word name="昺"/>
<uncommon-word name="竝"/>
<uncommon-word name="霦"/>
<uncommon-word name="犇"/>
<uncommon-word name="愊"/>
<uncommon-word name="贲"/>
<uncommon-word name="琲"/>
<uncommon-word name="礴"/>
<uncommon-word name="埗"/>
<uncommon-word name="别"/>
<uncommon-word name="骉"/>
<uncommon-word name="表"/>
</uncommon-spell>
</uncommon-spells>

以上即实现了使用jQuery读取xml格式的。

已赞过 已踩过<
你对这个回答的评价是?
评论 收起
匿名用户
2014-01-10
展开全部
 $.ajax({
            url: "你的文件xml的路径",
            dataType: 'xml',
            type: 'GET',
            timeout: 2000,
            error: function (xml) {
                alert("加载XML 文件出错!");
            },
            success: function (xml) {
                $(xml).find("span").each(function (i) {
                    var $color = $(this).attr("color");//读取节点属性
                  
                    $(this).attr("color",要改变的颜色);//设置节点属性
                });
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
大祁叔叔
2014-01-10 · TA获得超过162个赞
知道小有建树答主
回答量:394
采纳率:0%
帮助的人:92.2万
展开全部
当html一样的使用选择器 就好了
追问


已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 更多回答(2)
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

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

类别

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

说明

0/200

提交
取消

辅 助

模 式