$('.limitChar *').each(function() {
var value = $(this).text();
$('div').onfocus(value);
});
如何为上述代码的onfocus
值提供外部css?
答案 0 :(得分:0)
最好的答案是使用纯CSS。 只需添加一个classname:focus即可使其工作.. 但如果由于某些条件你不能在JS下面尝试
HTML
<input type="text" name="inputOne" />
<input type="text" name="inputTwo" />
$('input').focus(function(){
$(this).css("background","green");
}).
blur(function(){
$(this).css("background","white");
});
编辑:
如果你想在div或子元素获得焦点时做点什么
$("div").focusin(function(){
$(this).css("background-color", "#FFFFCC");
});