我想使用jquery从页面标记名称,因此我可以将它们用作变量。
示例:
Tags:
<title>Item Name</title>
<price>$10.00</price>
$tag_name[0] = first tag (this is where jquery code would go)
$tag_name[1] = second tag (this is where jquery code would go)
$item_array[$tag_name[0]][0] = "item name";
$item_array[$tag_name[1]][0] = "$10.00";
如何获取标签的实际名称?我知道如何获取内容。