SOURCE

console 命令行工具 X clear

                    
>
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',		/*绑定到输入框ID*/
		{
			XOffset:-10,	/*x横轴(负值向右偏移)*/
			YOffset:-20,	/*y纵轴(负值向下偏移)*/
			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>