console
window.setInterval(function(){console.clear()},500);
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>自定义 - 只需引用一段JS即可获得带有“搜索框提示”功能的搜索框,让您的搜索更快捷!</title>
</head>
<body>
<center>
<form action="" target="_blank"><p>只需引用一段JS即可获得带有“搜索框提示”功能的搜索框,让您的搜索更快捷!</p><p><a href="https://github.com/opensug/js/" target="_blank" style="color:#F00;font-weight:bold;font-size:xx-large;">如果您喜欢这个项目,请给openSug.js点个Star或Fork!</a></p>
<input type="text" name="q" placeholder="请输入关键词" autofocus="autofocus" autocomplete="off" style="border:1px solid #b9b9b9;padding:4px 7px;margin:0;height:22px;max-width:350px;font:16px arial;background-color:#fff;outline:0" id="search" />
<input type="submit" value="搜索一下" style="font-size:20px;width:80px;height:32px;color:#fff;letter-spacing:1px;background:#3385ff;outline:0;-webkit-appearance:none;-webkit-border-radius:0;font-size:14px;padding:0;border:0;cursor:pointer;margin-left:-6px" ><span id="ResultDiv" style="font-weight:bold"></span>
</form>
</center>
<script type="text/javascript" src="https://opensug.github.io/js/opensug.js"></script>
<script type="text/javascript">
openSug(
'search',
{
XOffset:-10,
YOffset:-20,
width:'',
borderColor:'#F60',
fontFamily:'Microsoft YaHei',
fontColor:'green',
fontSizee:'24px',
bgcolorHI:'blue',
fontColorHI:'red',
source: 'taobao',
sugSubmit:false
},
function(Result){document.getElementById("ResultDiv").innerHTML = Result;}
);
</script>
</body>
</html>