JS三目运算符运算三个条件


  	let str = "";

	//未使用前
     if(val=='1'){
         str = "one";
     }else if(val == '2'){
         str="two";
     }else if(val == '3'){
         str="three";
     }
	//使用后
    str = val == "1"?"one":val=="2"?"two":"three"

更多干货,关注微信公众号
在这里插入图片描述

你可能感兴趣的:(html+css)