听起来很简单,嗯。我找到了很多答案,但都使用 jQuery 或 ProtoType。我想要纯 JavaScript。应该没那么难,但 JavaScript 不是我的菜;没有中央文档意味着搜索年龄而不是找到我想要的东西。
考虑以下 HTML 代码片段:
<div class="central_0"> .. </div>
<div class="central_1"> .. </div>
<div class="central_2"> .. </div>
现在我想使用 JavaScript 来处理这些 DIV。
function processDivElements()
{
// search for relevant DIV classes
var divArray = document.getElementsByClass.regex('/^central_.*$/');
// do stuff with the DIV elements found
foreach (divArray as divElement)
{
divElement.style.background = '#f00';
};
}
谁能帮我把它翻译成正确的纯JavaScript?我使用类,而不是 ID。我更喜欢使用正则表达式。