课程
/前端开发
/jQuery
/jQuery基础课程
$('li:first').css({"background-color", "red"},{"color","green"});为什么不对呢
2014-07-12
源自:jQuery基础课程 3-1
正在回答
因为你函数调用错了,css()函数支持同时设置多个CSS属性/值对。函数定义为:
$(selector).css({property:value, property:value, ...})
所以,你的代码需要改成:
$('li:first').css({"background-color":"red", "color":"green"});
才能生效。
你的代码是red啊
丽雪儿from火星 提问者
举报
加入课程学习,有效提高前端开发速度