我想使用javascript检查xml文件中是否有特定的标记名。 伪代码:
if (there_is_a_tag_name_called_<picture>)
{ variable=1;}
else
{variable=0;}
注意:if( "tagname.length>0")
不会工作....
我该怎么办?
答案 0 :(得分:1)
我认为你可以使用这个
if(node.getElementsByTagName("picture").length > 0){
variable=1;
}
else
{variable=0;}
答案 1 :(得分:-1)
我无法粘贴html内容, 因此我将我的代码粘贴为图像