css+div基础

css的语法特点:
1.在文档中引入样式表要使用<style>标记,并放在<head>
2.语法:样式表{
                       [属性:属性值]; [属性:属性值];
                     }
例如<style type="text/css">
       <!--
         .classstyle1{  font-family:仿宋; font-size:12pt; }
          -->
3.属性值没有用引号包围起来的。


CLASS和ID类型的样式表
1.为class指定样式的语法是在类名前加(.)点号,然后将样式定义写在大括号内。
   例如:  .classstyle1{color:blue;}
2.ID指定样式的方法是用#号代替点号。

<style type="TEXT/CSS">
<!--
   .classstyle1{
        font-family:仿宋;
        font-size:12pt;
  }
  .classstyle2{
         font-family:华文楷体;
font-size:15pt;
font-style:italic;
}
  #idstyle{
     font-family:隶书;
font-size:19pt;
color:blue;
}
-->
</style>

<p class="classstyle1">段落一classstyle1效果</p>.
<p id="idstyle">段落二idstyle效果</p>
<p >在一行中<span class="classstyle2">使用样式可以使用&lt;span&gt;标记。classstyle2效果</span></p>
<div class="classstyle">段落三classstyle1效果</div


javascript
1.打开google网站:  window.open("http://www.google.com")
2.在html文档显示hello  : document.write("hello");
3.弹出窗口 : alert("sdfd");
4.强制类型转换函数
  例如:parseInt("6.12")=6
           parseFloat("6.12")=6.12
           eval("1+1")=2,eval("1<2")=true--------------------evel函数将字符串强制转换为表达式并返回结果
5.typeof:查询数值当前类型:  typeof("test"+3)="string",typeof(null)="object"
6.11中内置对象:array,string,date,math,boolean,number,function,global,error,regexp,object
7.字符串对象:自动创建和手工创建。
   var sr="hello world"; 用完就丢弃
   var str=new String("hello world");全局有效
8.汉字,字母长度都为1
9.三种对话框:alert(str),confirm(str),prompt(str,value)

你可能感兴趣的:(JavaScript,html,css,Google)