主宰灵魂
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()里面的语句没有执行?
($("#oText").css("borderColor") 的值是 rgb(255, 0, 0) 与red 不相等,自然不会执行 变成蓝色的语句。
if($("#oText").css("borderColor") == 'red' );
$("#oText").css("borderColor", "blue");
jQuery基础 (一)—样式篇
217509 学习 · 1218 问题
相似问题
回答 1
回答 1