【发布时间】:2010-07-17 08:10:27
【问题描述】:
我知道 IE7 有问题...
我在这里和 Google 上阅读过帖子,告诉我我需要手动设置样式 onfocus() 和 onblur()。但是,我尝试的一切都不起作用!
这是我的 jQuery
$(document).ready(function(){
if (jQuery.browser.msie === true) {
$("input.date-picker").each(function(i)
{
var $foo= $(this);
$foo.bind('onfocus onblur', function() {
$(this).toggleClass('smalltxt-active');
});
});
}//end if
});
一个对应的框
<input name="ctl00$SelectionContent$Selections1$txtDestinationDate" type="text"
id="ctl00_SelectionContent_Selections1_txtDestinationDate" class="date-picker"
style="width:80px;" />
我已经确认我的代码正在检测 MSIE。我得到了 2 个 input.date-picker 对象的计数。
有什么想法吗?
提前致谢,
【问题讨论】:
标签: asp.net jquery css internet-explorer-7