我是
JavaScript的新手.我刚刚制作了这个简单的脚本:
[HTML code]
<html> <body> <script src="externalscript.js"></script> <p id="text">This text will change style</p><br> <button type="button" onclick="changeStyle()">Click me</button> </body> </html>
[JS代码]
function changeStyle() { status = 1; x = document.GetElementById("text"); if(status==1) { x.style.color = 'blue'; status = 2; } if(status==2) { x.style.color = 'red'; status = 3; } if(status==3) { x.style.color = 'yellow'; status = 1; } }
我想让它在每次单击按钮时将文本更改为不同的样式.但是,这不起作用.任何人都可以解释一种正确的方法吗?