问题描述
如其名:其实我是不怎么懂jquery对象,差不多只晓得这个东西能返回一组东西,好了,废话少说,入正题:
解决方案
你要做的是把你发生事件的input框加上样式都不是所有的input框 var myinput = $("table input"); myinput.click(function () { $(this).css("background-color", "RGB(255,245,215)"); }); myinput.mouseout(function () { $(this).css("background-color", "RGB(255,255,255)"); });
时间: 2024-09-15 01:52:57