css实现页面无边距

版权声明:本文为博主原创文章,未经博主允许不得转载。 https://blog.csdn.net/wagner_zk/article/details/52171185

SDK\Samples\JS\beginner\HTMLWindow\Introdution.html


<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

<html xmlns="http://www.w3.org/1999/xhtml">
<head>
    <title>Introdution</title>
	<style type="text/css">
	body{
		margin-left: 0px;
		margin-top: 0px;
		margin-right: 0px;
		margin-bottom: 0px;
	}
	</style>
</head>
<body>
<img src="操作说明.JPG" width="601" height="344" border="0" usemap="#Map">
<map name="Map">
	<area shape="rect" coords="540,0,570,20" href="#" onClick="shut()">
</map>
</body>
<script type="text/javascript">
function shut()
{
  var parentDoc = external;      
  parentDoc.parentWindow.__g.htmlWindow.hideWindow(0);
}
</script>
</html>


猜你喜欢

转载自blog.csdn.net/wagner_zk/article/details/52171185