Authored by yyq

搜索ie8

... ... @@ -176,7 +176,7 @@ $searchKey.keyup(function(e) {
});
// ie8输入框提示特殊处理
if ($.browser && $.browser.msie && parseInt($.browser.version, 10) === 8) {
if (!!window.ActiveXObject && !!document.documentMode) {
$searchKey.focus(function() {
var key = $searchKey.val();
... ... @@ -189,7 +189,7 @@ if ($.browser && $.browser.msie && parseInt($.browser.version, 10) === 8) {
if ($.trim(key) === '') {
$searchKey.val('search').css('color', '#aaa');
}
});
}).val('search').css('color', '#aaa');
}
$clearInput.click(function() {
... ...