何种情况用function
写js时,有时候直接申明、赋值;有时候用function。直接懵逼。。。求解。
①var mychar;
mychar= document.getElementById("con");
mychar.style.color="red"
②有时候用function:
function yanse(){
document.getElementById("con").style.color="red";
document.getElementById("txt").style.color="red";