Solucio llenguatges
De wikiserver
La revisió el 10:21, 31 març 2016 per Jnoguera (Discussió | contribucions) (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…».)
<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>
Cuales de los siguientes lenguajes son orientados a objetos: Java, VB6, C++, C, C#, Cobol ?
<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");
}