JavaScript Get Element by Value
Sometimes we need to scroll to one element on page, we use elem.scrollIntoView()
, as you see, it requires a element object. But for some reason, when you do not have a unique id or class name or whatever, only have a unique value, you can try this way.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function getBlockByValue() { | |
var levels = document.getElementsByClassName('level'); | |
var length = levels.length; | |
var ret = []; | |
for (var i = 0; i < length; i++) { | |
var level = levels[i]; | |
if (level.innerHTML == '[FAIL]' || level.innerHTML == '[PASS]') { | |
ret.push(level); | |
} | |
} | |
return ret; | |
} |
In this example, you get a element like <td class="level">[FAIL]</td>
, here the level
will appear in every row of the table, cannot used to determine the location, but the value [FAIL]
or [PASS]
only appear once in the whole page.