アクセシビリティ ツールを実装しようとしています。ボタンをクリックすると、段落のフォント サイズを変更できましたが、すべての段落で機能するようにコードを変更しようとしましたが、機能しませんでした。
<script>
function myFunction()
{
var p =document.getElementsByTagName('p'); // Find the element
p.style.fontSize="1.5em"; // Change the style
}
</script>
<button type="button" style="background: #ccc url(images/small.jpg); padding: 0.3em 1em" onclick="myFunction()"></button>
これは、以前は1つの段落だけで機能していましたが、複数の段落を試しています:
<script>
function myFunction()
{
x=document.getElementById("demo") // Find the element
x.style.fontSize="3.0em"; // Change the style
}
</script>