Ctrl+/
IE11
F11
ESC
PgUp
PgDn
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<title>窗口始终在最上面</title>
</head>
<body>
<input type="button" name="Button" value="显示窗口" onClick="newform()">
<script language="JavaScript">
var name;
function newform(){
name=window.open("","","width=300,height=200");
name.document.write('<input name="imageField" type="image" src="//ku.shouce.ren/files/images/201601/56a32006be45d.jpg" width="280" height="180" border="0">');
show(name);
}
function show(name){
try{
name.document.focus();
setTimeout("show(name)",1);
catch(e){}
</script>
</body>
</html>
CSS代码...
JS代码...
xxxxxxxxxx