GetElementsBy ...(javascript)

时间:2013-06-07 14:46:23

标签: javascript

我想获得具有rel ='edit'的链接的href值,我想知道我该怎么做。

<link rel='self' type='application/atom+xml' href='https://spreadsheets.google.com/feeds/****'/>
<link rel='edit' type='application/atom+xml' href='https://spreadsheets.google.com/feeds/****'/>

我正在尝试

this.url = entry.getElementsByTagName('link')[1].getAttribute('href');

但我得到第一个链接的href。

感谢。

编辑:

现在我不明白的是,当我确定我得到正确的链接时,href值不是我所期待的

<link rel='self' type='application/atom+xml' href='https://spreadsheets.google.com/feeds/list/**********/full/ba0fz'/>
<link rel='edit' type='application/atom+xml' href='https://spreadsheets.google.com/feeds/list/**********/full/ba0fz/27mpei328jki4e'/>

我想要的是在href上做一个正则表达式我想得到“27mpei328jki4e” 但是没有得到完整的网址,我得到了短网址,你知道为什么我得到这个结果吗?无论我使用什么方法,queryselector和getElementsByTagName都没有。

我的文档是xml

<?xml version='1.0' encoding='UTF-8'?>
 <entry xmlns='http://www.w3.org/2005/Atom'    xmlns:gsx='http://schemas.google.com/spreadsheets/2006/extended'>
 <id>************</id>
 <updated>2013-06-06T17:38:25.749Z</updated>
 <category scheme='http://schemas.google.com/spreadsheets/2006' term='http://schemas.google.com/spreadsheets/2006#list'/>
 <title type='text'>30/05/2013 17:12:42</title><content type='text'>
 timeprocess: 01/01/1900, useroid: ICCOM-00000327, 
 </content>
 <link rel='self' type='application/atom+xml' href='https://spreadsheets.google.com/**********/full/ba0fz'/>
 <link rel='edit' type='application/atom+xml' href='https://spreadsheets.google.com/**********/full/ba0fz/27mpei328jki4e'/>
 <gsx:time>30/05/2013 17:12:42</gsx:time>
 <gsx:timeprocess>01/01/1900</gsx:timeprocess>
 <gsx:useroid>ICCOM-00000327</gsx:useroid>
 </entry>

1 个答案:

答案 0 :(得分:3)

尝试使用query selectors

document.querySelector('link[rel="edit"]');