if选择问题
<!DOCTYPE html>
<html>
<body>
<input type="button"
onclick="f1()"
value="改变背景色">
<p id="p2">啧啧啧</p>
<script>
function f1()
{
if (document.body.style.backgroundColor="lavender")
{
document.body.style.backgroundColor="grey"; //为什么背景颜色只和这行代码有关?
}
else
{
document.body.style.backgroundColor="lavender";
}
}
</script>
</body>
</html>