我正在尝试实现可访问性工具,并且在单击按钮后我设法更改了段落的字体大小,但我尝试更改代码以使其适用于所有段落但不起作用
<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>
这就是它以前只对一个段落起作用的方式,但我正在尝试不止一个:
<script>
function myFunction()
{
x=document.getElementById("demo") // Find the element
x.style.fontSize="3.0em"; // Change the style
}
</script>