为什么没有显示出效果
<!DOCTYPE HTML>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>style样式</title>
</head>
<body>
<h2 id="con">I love JavaScript</H2>
<p> JavaScript使网页显示动态效果并实现与用户交互功能。</p>
<script type="text/javascript">
var mys=document.getElementById("con");
mys.style.color:"red";
mys.style.backgroundColor:"#CCC";
//mys.style.display:"none";
</script>
</body>
</html>