JavaScript - Prototype de test

Référez-vous au Prototype

Pour tester une bibliothèque JavaScript, vous devez la référencer dans votre page web.

Pour référencer une bibliothèque, utilisez la balise <script> avec son attribut src défini sur l'URL de la bibliothèque :

<!DOCTYPE html>
<html>
<head>
<scriptsrc="http://apps.bdimg.com/libs/prototype/1.7.1.0/prototype.js"></script>
</head>
<body>
</body>
</html>


Description du prototype

Prototype fournit des fonctions qui facilitent la programmation HTML DOM.

Semblable à jQuery, Prototype possède également sa propre fonction $(). La fonction

$() accepte la valeur id d'un élément HTML DOM (ou élément DOM) et ajoutera une nouvelle fonctionnalité à l'objet DOM.

Contrairement à jQuery, Prototype n'a pas de méthode ready() pour remplacer window.onload(). Au lieu de cela, Prototype ajoute des extensions au navigateur et au DOM HTML.

Méthode JavaScript :

function myFunction()
{
var obj=document.getElementById("h01");
obj.innerHTML="Bonjour Prototype";
}
onload=myFunction;

Méthode prototype :

function myFunction()
{
$("h01 ").insert("Bonjour Prototype!");
}
Event.observe(window,"load",myFunction);


Event.observe() accepte trois paramètres :

L'objet HTML DOM ou BOM (Browser Object Model) que vous souhaitez gérer

L'événement que vous souhaitez traiter

L'événement vous souhaitez traiter la fonction appelée


Comparaison d'instance :

<!DOCTYPE html>
<html>
<head> 
<meta charset="utf-8"> 
<title>php中文网(php.cn)</title> 
<script src="http://apps.bdimg.com/libs/prototype/1.7.1.0/prototype.js"></script>
<script>
function myFunction(){
$("h01").insert("Hello Prototype!");
}
Event.observe(window,"load",myFunction);
</script>
</head>
<body>
<h1 id="h01"></h1>
</body>
</html>

Comparaison :

<!DOCTYPE html>
<html>
<head> 
<meta charset="utf-8"> 
<title>php中文网(php.cn)</title> 
<script src="http://apps.bdimg.com/libs/prototype/1.7.1.0/prototype.js"></script>
<script>
function myFunction(){
$("h01").writeAttribute("style","color:red").insert("Hello Prototype!");
}
Event.observe(window,"load",myFunction);
</script>
</head>
<body>
<h1 id="h01"></h1>
</body>
</html>


Formation continue
||
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>php中文网(php.cn)</title> <script src="http://libs.baidu.com/jquery/1.10.2/jquery.min.js"></script> <script> function Person(name){ this.name=name; } Person.prototype.share=[]; Person.prototype.printName=function(){ alert(this.name); } var person1=new Person('Byron'); var person2=new Person('Frank'); person1.share.push(1); person2.share.push(2); console.log(person2.share); //[1,2] </script> </head> <body> <p>请在浏览器中打开 F12 观察结果</p> </body> </html>
soumettreRéinitialiser le code
  • Recommandations de cours
  • Téléchargement du didacticiel