Authored by yyq

搜索ie8

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