我正在尝试从此链接获取号码
<div id="section-tabs-header">
<a id="section-tabs-header-subtitle" class="ellipsis" href="/courses/123456">Math 101</a>
并将其存储在变量中
var courseID = $("div#section-tabs-header a#section-tabs-header-subtitle").attr("href").match(/\d+/);
console.log(courseID);
但变量是“未定义的”。
http://jsbin.com/ukogam/2/edit
是因为 jQuery 找到的是 html 而不是数字的纯文本吗?我如何只得到号码?