码迷,mamicode.com
首页 > Web开发 > 详细

js代码片段

时间:2015-09-24 12:51:53      阅读:186      评论:0      收藏:0      [点我收藏+]

标签:

//解析xml
var sc = "<window left=‘0‘ top=‘0‘ right=‘500‘ bottom=‘300‘ ><item playinfotype=‘html‘ type=‘localfile‘ filename=‘ct_1399954818700.txt‘ entryeffect=‘no_effect‘ entryspeed=‘NORMAL‘ staytime=‘5‘ backgroundcolor=‘#000000‘ /></window>"; var xmlDoc = $.parseXML(sc); var result=""; $(xmlDoc).find("window").each(function(i) { var wleft = $(this).attr("left"); var wtop = $(this).attr("top"); var wright = $(this).attr("right"); var wbottom = $(this).attr("bottom"); var color = $(this).children("item").attr("backgroundcolor"); alert(color); // wleft:左边距 wtop:上边距:wright:宽 bottom:高 reduction(wleft,wtop,wright,wbottom) });

 

js代码片段

标签:

原文地址:http://www.cnblogs.com/yaoyao66123/p/4834763.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!