Diferència entre revisions de la pàgina «Solucio llenguatges»
De wikiserver
(Es crea la pàgina amb «<html> <head> <title>Problema</title> <style>.resaltado{ color:#000000; }</style> <script type="text/javascript" src="../jquery.js"></script> <script type="text/javascr…».) |
|||
Línia 1: | Línia 1: | ||
+ | <source lang="java"> | ||
<html> | <html> | ||
<head> | <head> | ||
Línia 34: | Línia 35: | ||
x.css("background-color","ffff00"); | x.css("background-color","ffff00"); | ||
} | } | ||
+ | |||
+ | </source> |
Revisió de 10:22, 31 març 2016
<html>
<head>
<title>Problema</title>
<style>.resaltado{
color:#000000;
}</style>
<script type="text/javascript" src="../jquery.js"></script>
<script type="text/javascript" src="funciones.js"></script>
</head>
<body>
<p>Cuales de los siguientes lenguajes son orientados a objetos:
<span class="resaltado">Java</span>, VB6, <span class="resaltado">C++</span>, C,
<span class="resaltado">C#</span>, Cobol ?</p>
<input type="button" id="boton1" value="ver resultado">
</body>
</html>
var x;
x=$(document);
x.ready(inicializarEventos);
function inicializarEventos()
{
var x;
x=$("#boton1");
x.click(resaltar);
}
function resaltar()
{
var x;
x=$(".resaltado");
x.css("background-color","ffff00");
}