mirror of
https://github.com/rkd77/elinks.git
synced 2025-01-03 14:57:44 -05:00
[assert] element.attributes
This commit is contained in:
parent
4aee3a3717
commit
6059ad2211
26
test/ecmascript/assert/element.attributes.html
Normal file
26
test/ecmascript/assert/element.attributes.html
Normal file
@ -0,0 +1,26 @@
|
|||||||
|
<!DOCTYPE html>
|
||||||
|
<html>
|
||||||
|
<body>
|
||||||
|
|
||||||
|
<p>Click the button to get the value of the onclick attribute of the button element.</p>
|
||||||
|
|
||||||
|
<button onclick="myFunction()">Try it</button>
|
||||||
|
|
||||||
|
<p><strong>Note:</strong> Internet Explorer 8 and earlier does not support the getNamedItem method.</p>
|
||||||
|
|
||||||
|
<p id="demo"></p>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
function myFunction() {
|
||||||
|
var a = document.getElementsByTagName("BUTTON")[0];
|
||||||
|
var x = a.attributes.getNamedItem('onclick').value;
|
||||||
|
console.assert(x === 'myFunction()', 'attributtes');
|
||||||
|
}
|
||||||
|
|
||||||
|
console.error('element.attributes.html');
|
||||||
|
myFunction();
|
||||||
|
console.exit(0);
|
||||||
|
</script>
|
||||||
|
|
||||||
|
</body>
|
||||||
|
</html>
|
Loading…
Reference in New Issue
Block a user