HTML learning summary 10_html/css_WEB-ITnose

WBOY
Release: 2016-06-24 11:46:45
Original
1079 people have browsed it

1、加入JavaScript和外部内容

  (1)画布介绍

    画布元素是一个自由格式的区域,在这里你可以通过用图像、手工制图、动画和文本来提升网页的用户提样。

    可以用适当的标记符在网页上加上一个画布元素。像其他HTML标记符一样,标记符也有属性,最基本的属性是网页中画布的高和宽。创建一个       200x200画布可以使用以下代码:

    

    标记符什么也没做,他实际上是一个空白区域,我们可以利用现在浏览器能明白的编程语言JavaScript来赋予画布新的生命。

2、JavaScript

  JavaScript不是Java、它基本上和Java编程语言没有什么关系。

  使用程式库或框架技术可以让JavaScript在所有流行的浏览器中以同样的方式工作,其中一种流行的框架技术称为jQuery

3、在网页中加入JavaScript,需要加入<script>标记符。具体来说,开始标记符应该是这样的:</p> <p>  <script type="text/ javascript"></p> <p>  结束标记符应该像下面这样:</script>

  在开始标记符和结束标记符中间正是你要插入JavaScript代码的地方。<script>标记符通常包含src属性,该属性说明,网页插入了外部的JavaScript文件。例如:有一个     JavaScript文件,它的文件名是“myjavascript.js",则应该以这样的的方式加入该文件。</p> <p>  <script type="text/javascript" src="myjavascript.js"></script>

4、用户的浏览器可能禁用JavaScript

  有些用户浏览器禁用JavaScript或者一些用户没有安装最新版本的浏览器Web浏览器,很多原因使用户不愿意启用JavaScript,为了网站在没有JavaScript的情况下依然可以工   作,你要确保JavaScript以适当的方式发出错误信息。

  检验JavaScript是否被启用的方法是使用

5、JavaScript事件和jQuery

  jQuery是一个开源的JavaScript文件,它不仅省略了开发人员索要处理的跨浏览器兼容性的问题,而且简化了JavaScript初学者所所不具备的高级编程技术,jQuery的      JavaScript框架,对于JavaScript事件和所有常见的JavaScript来说,都是非常理想的编程工具。

6、获取jQuery工具

  可以从http://jquery.com下载jQury。jQuery只有一个文件,将它放在网站的文档的根目录处或主文件夹下(或具体环境中放置JavaScript文件的地方)

7、jQuery中有一个函数叫.ready()。它只会在浏览器完全装载网页并且已经为JavaScript准备好了后才会执行。jQuery代码以$符号开头和括号开始。

  例如:

   

     

      

         Document Ready

        

      

      

      

       

      

8、

  (1)用jQuery来选择元素,例如:

等。

  HTML代码带有一个

元素,它的id属性,设置为contentDiv:

  

Your first JavaScript Page.

  如果使用jQuery,以下的语法会使选择元素变得简单:

  

Your first JavaScript page.

 $("#contentDiv")

 You can also use the following syntax to select all

elements:

 $(".classname")

 (2)jQuery also provides several other methods to select elements, including the layering function, through which you can select the sub-elements of an element; or select all other elements except the specified element; or Select an element's parent elements

or use any of the many other selectors.

Please see an additional example;

🎜>   

   iQuery 101

body>

    
Your second Javascript page.

   

    $("#contentDiv").css("backgroundColor","#abacab");

  $("#contentDiv") .click(function(){

    $(this).fadeout(5000);});

  

  

 

 Note that the click function is directly attached to

, where the id variable is equal to contentDiv. Within the .click() function, it calls another function called .fadeOut() (an anonymous function enclosed in curly braces). Note that here, there is a new part, the $(this) tag. The $(this) tag refers to the element that generated the event, so this example specifies the contentDiv element, which can also be written in the following way:

 $("contentDiv").click(function(){ $("contentDiv").fadeout(5000);})

10. Use jQuery and JavaScript to validate the form

 

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!