发布网友 发布时间:2022-04-22 16:26
共4个回答
热心网友 时间:2022-04-22 23:59
$('<span color="red" fontsize="20">sdfsdd</span>').attr('color','red');
或者
选择哪一个看你这段代码所处的上线文,你交代的不清楚,我不能为你选择了。
追答$(elem).attr('color','yellow');//这样不就是设置为*了吗?
atrr()方法接收两个参数,前一个是属性名,后一个是属性值。属性值你可以传入一个预设好的变量。
给你写了个Demo,你灵活运用啊。
热心网友 时间:2022-04-23 01:17
大部分项目如果使用ajax请求,返回数据格式基本上都是json格式;
下面就以实际项目为例进行xml格式数据的分析。
<?xml version="1.0" encoding="UTF-8" ?>以上即实现了使用jQuery读取xml格式的。
热心网友 时间:2022-04-23 02:52
$.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",要改变的颜色);//设置节点属性
});
热心网友 时间:2022-04-23 04:43
当html一样的使用选择器 就好了追问