|
@@ -75,11 +75,13 @@ z-index:999999;">
|
|
|
|
|
|
|
|
|
$('input[placeholder="请输入内容"]').attr('id','search').attr('autocomplete','off');
|
|
|
- $('#search').focus(function(){
|
|
|
- $(this).attr('placeholder','')
|
|
|
- }).blur(function () {
|
|
|
- $(this).attr('placeholder','请输入内容')
|
|
|
- });
|
|
|
+ setTimeout(function () {
|
|
|
+ $('#search').focus(function(){
|
|
|
+ $(this).attr('placeholder','')
|
|
|
+ }).blur(function () {
|
|
|
+ $(this).attr('placeholder','请输入内容')
|
|
|
+ });
|
|
|
+ },300)
|
|
|
|
|
|
$('head').after(`
|
|
|
<style>
|