请html语言高手帮忙分析下代码!
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了请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" xml:lang="EN" lang="EN" dir="ltr">
<head profile="http://gmpg.org/xfn/11">
<title>School Education</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta http-equiv="imagetoolbar" content="no" />
<link rel="stylesheet" href="styles/layout.css" type="text/css" />
<script type="text/javascript" src="scripts/jquery-1.4.1.min.js"></script>
<script type="text/javascript" src="scripts/jquery.slidepanel.setup.js"></script>
<script type="text/javascript" src="scripts/jquery.cycle.min.js"></script>
<script type="text/javascript" src="scripts/jquery.cycle.setup.js"></script>
<style type="text/css">
<!--
.STYLE3 font-size: 20px
body
margin-left: 5px;
.STYLE4
font-size: 32px;
font-weight: bold;
.STYLE5 font-size: 14px
.STYLE6 font-style: italic
.STYLE7 font-size: 14
-->
</style>
</head>
<body>
<div class="wrapper col0">
<div id="topbar">
<div id="slidepanel">
<div class="topbox">
<h2>Nullamlacus dui ipsum</h2>
<p>Nullamlacus dui ipsum conseque loborttis non euisque morbi penas dapibulum orna. Urnaultrices quis curabitur phasellentesque congue magnis vestibulum quismodo nulla et feugiat. Adipisciniapellentum leo ut consequam ris felit elit id nibh sociis malesuada.</p>
<script type="text/javascript" src="scripts/jquery.slidepanel.setup.js"></script>
<script type="text/javascript" src="scripts/jquery.cycle.min.js"></script>
<script type="text/javascript" src="scripts/jquery.cycle.setup.js"></script>
这些是一些脚本 scr指向的就是脚本的路径
<link rel="stylesheet" href="styles/layout.css" type="text/css" />
这个是样式的路劲,这个网页可以调用styles文件夹里面的layout.css样式
里面什么样式我就不知道了
<style type="text/css">
<!--
.STYLE3 font-size: 20px
body
margin-left: 5px;
.STYLE4
font-size: 32px;
font-weight: bold;
.STYLE5 font-size: 14px
.STYLE6 font-style: italic
.STYLE7 font-size: 14
-->
</style>
这个是本文件的样式。。。。。都是设置一些字体的属性font有关的都是字体
只有第二个bodymargin-left:5px;这个是左边距5像素,一般情况下不这么设置的 都是设置bodymargin:0px auto;
body就是整个页面的意思。。。。。如果你设置了5像素,不管屏幕有多大,都是在靠右5像素的,这样网站不是很理想
那个class跟那个id都是调用样式的代码,我就不做多解释了
h2怎么说呢,h1里面的字体是最大的,h后面的数值越大,字体就越小,p就是一个字段
你这个代码不完整,没一个<div>都要有</div>来结束 所以你编写的时候要注意这个问题。。 参考技术A 书爷压闻喘猟云猟亀园辞HTML嚣冱议扮昨嘱欺汇幸宸劔议谅籾厘?绩压汇幸匈中崭委宸叱幸忖?^厘?绩压汇幸匈中崭?币宸粁旗鹰哘乎奕担恂? ̄鹸仑序肇? 参考技术B <script type="" src=""></script>
这些是一些js脚本 src指向的就是脚本的路径
<link rel="stylesheet" href="styles/layout.css" type="text/css" />
这个是样式的路径,这个网页可以调用styles文件夹里面的layout.css样式
里面什么样式我就不知道了
<style type="text/css">
<!--
.-->
</style>
这个是本文件的样式。。。。。都是设置一些字体的属性font有关的都是字体
只有第二个bodymargin-left:5px;这个是左边距5像素,一般情况下不这么设置的 都是设置bodymargin:0px auto;
body就是整个页面的意思。。。。。如果你设置了5像素,不管屏幕有多大,都是在靠右5像素的,这样网站不是很理想
那个class跟那个id都是调用样式的代码,我就不做多解释了
h2怎么说呢,h1里面的字体是最大的,h后面的数值越大,字体就越小,p就是一个字段
你这个代码不完整,没一个<div>都要有</div>来结束 所以你编写的时候要注意这个问题。。 参考技术C 输出一个显示
Nullamlacus dui ipsum
Nullamlacus dui ipsum conseque loborttis non euisque morbi penas dapibulum orna. Urnaultrices quis curabitur phasellentesque congue magnis vestibulum quismodo nulla et feugiat. Adipisciniapellentum leo ut consequam ris felit elit id nibh sociis malesuada
这些信息的页面而已
Thread.sleep(1)为啥不起作用?请高手帮忙分析!
如下测试并发代码,在Callme类里面产生毫秒级的流水号System.currentTimeMillis(),为了禁止重复,在同步方法里面睡眠1毫秒,保证下个线程进入时已经过了1毫秒,System.currentTimeMillis()值不会和上一个线程的重复。
但运行结果发现还会产生重复的流水号,如果sleep时间调到500毫秒或者再长点,就不会重复了,sleep(10)的时候也会重复,请各位高手指点迷津。是不是java的thread有什么机制?
class Callme
public synchronized static void call(String msg)
System.out.print("[" + msg +":");
System.out.print(System.currentTimeMillis());
System.out.println("]");
try
Thread.sleep(1);
catch (InterruptedException e)
e.printStackTrace();
class Caller extends Thread
public void run()
Callme.call("hello");
public class Test_sleep
public static void main(String[] args)
for(int i = 0; i < 999; i++)
Caller obj = new Caller();
obj.start();
运行结果:
[hello:1316771482331]
[hello:1316771482331]
[hello:1316771482331]
[hello:1316771482331]
[hello:1316771482331]
[hello:1316771482331]
[hello:1316771482331]
[hello:1316771482331]
[hello:1316771482346]
[hello:1316771482346]
[hello:1316771482346]
[hello:1316771482346]
[hello:1316771482346]
[hello:1316771482346]
[hello:1316771482346]
[hello:1316771482346]
[hello:1316771482362]
[hello:1316771482362]
[hello:1316771482362]
[hello:1316771482362]
[hello:1316771482362]
[hello:1316771482362]
[hello:1316771482362]
[hello:1316771482362]
[hello:1316771482378]
[hello:1316771482378]
[hello:1316771482378]
[hello:1316771482378]
[hello:1316771482378]
[hello:1316771482378]
[hello:1316771482378]
[hello:1316771482378]
[hello:1316771482393]
[hello:1316771482393]
[hello:1316771482393]
[hello:1316771482393]
[hello:1316771482393]
[hello:1316771482393]
[hello:1316771482393]
[hello:1316771482393]
根据javadoc的说明,System.currentTimeMillis()虽然返回以毫秒计数的时间,但是能不能精确到一毫秒是要看操作系统的计数精度的。而大多数操作系统都不能以1毫秒单位做计数。
For example, many operating systems measure time in units of tens of milliseconds.
比如,mac或者Linux计数精度可能接近1毫秒,但是windows可能是50毫秒(具体数值请另查)。
看你上面给的结果,你用的操作系统好像精度在15-16毫秒。
如果你用的是jdk1.5以上,并且只是取流水号而不是精确计时的话,可以用System.nanoTime()代替。追问
看了一下jdk api,是这样的,谢谢!
参考技术A 1毫秒在cpu那么高的频率面前根本就微乎其微,可以忽略的以上是关于请html语言高手帮忙分析下代码!的主要内容,如果未能解决你的问题,请参考以下文章