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

来源:3-7 jQuery的属性与样式之样式操作.css()

主宰灵魂

2018-06-30 17:21

<!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()里面的语句没有执行?

写回答 关注

2回答

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

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

    主宰灵魂 回复酒窝MM

    https://www.imooc.com/qadetail/264956 帮解答下

    2018-07-02 17:44:15

    共 3 条回复 >

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

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

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


jQuery基础 (一)—样式篇

jQuery初入开启样式修炼,体验万能的jQuery样式集搭建网站布局

217509 学习 · 1218 问题

查看课程

相似问题