问答详情
源自:3-7 jQuery的属性与样式之样式操作.css()

请问这段代码为什么没有执行?

<!DOCTYPE html>
<html>	
  <head>		
    <meta charset="UTF-8">		
    <title></title>		
    <script src="https://libs.baidu.com/jquery/1.9.1/jquery.js"></script>	
   </head>	
  <body>	
    <input type="text" id="oText" style="border:2px solid red; ">	
    <script >	
    if(($("#oText").css("borderColor")) =="red")	
      $("#oText").css("borderColor", "blue");
    </script> 
  </body>
</html>

为什么if()里面的语句没有执行?

提问者:主宰灵魂 2018-06-30 17:21

个回答

  • 酒窝MM
    2018-07-01 22:49:51
    已采纳

    ($("#oText").css("borderColor") 的值是  rgb(255, 0, 0) 与red 不相等,自然不会执行 变成蓝色的语句。

  • 壹贰叁肆伍
    2019-02-19 10:29:57

    if($("#oText").css("borderColor") == 'red' );

    $("#oText").css("borderColor", "blue");