标签:des style blog http java io ar cti
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<title>dialog master</title>
<meta name="description" content="dialog" />
<meta name="keywords" content="jquery,dialog" />
<link rel="stylesheet" type="text/css" href="css/dialog.css" />
<style type="text/css">
* {
margin: 0;
padding: 0;
}
body {
background: #FFF;
font: 12px/162% Arial,Helvetica,sans-serif;
}
p {
margin: 0 0 10px;
}
img {
border: 0;
}
.doc {
width: 650px;
margin: 100px auto 50px;
}
</style>
</head>
<body>
<div class="doc">
</div>
<script src="js/jquery.js"></script>
<script src="js/dialog.js"></script>
<script language="javascript">
$(document).ready(function(){
dialog.show({
title: ‘百度‘,
url: ‘http://www.baidu.com‘,
width:800,
height:500
});
});
</script>
</body>
</html>
标签:des style blog http java io ar cti
原文地址:http://www.cnblogs.com/qiqing/p/3895825.html