JavaScript 从“ng-bind”获取跨度值

JavaScript get span value from “ng-bind”

有很多类似的帖子,但我找不到我的解决方案。

我的代码是:

<span ng-bind="selected.S_date" class="ng-binding">Different value all the time here.</span>

我想从跨度中获取值 Different value all the time here

我可以

document.getElementsByClassName('ng-binding')[55].textContent

这里的55是动态的,值变化。 找到了 但我想用 JavaScript.

想做类似的是JavaScript?

邪猴在评论中提出的解决方案

document.querySelector("span[ng-bind='selected.S_date']")