我有一张图片地图,我希望x1,y1,x2,y2在不同的变量中分开, 这是地图:
<area shape="rect"
coords="470,555,863,665"
id="map"
href="#"
这是如何从中获取协调:
var myVar = (document.getElementById("map").coords);
但是这一行的输出是“470,555,863,665”是否可以将它们分成不同的变量?
感谢
答案 0 :(得分:2)
var coords = myVar.split(",");
coords
现在是逗号分隔列表中各个值的数组。所以x1 = coords[0]
,y1 = coords[1]
等
答案 1 :(得分:1)
var myVar = (document.getElementById("map").coords).split(',');
//myVar will be an array of all those values