-1

我在一个网站上有一个计数器,我想使用 Javascript 访问它的值。

我试图引用的代码如下所示:

<span id="counter">
0123 // This is the value I'm trying to access
</span>

轻松访问此值的最佳方法是什么?屏幕抓取似乎过于复杂。谢谢!

4

1 回答 1

1
var el = document.getElementById('counter'),
    // innerText for IE, textContent for other browsers.
    value = el.textContent || el.innerText || '';
alert(value);
于 2012-10-01T23:19:45.527 回答