Tutorial #6 del curso de Jquery, en este tutorial seguimos viendo la parte de selectores de jquery, presta mucha atención a estos tutoriales ya que son la base del aprendizaje del curso.
<!DOCTYPE html> <html lang="es"> <head> <meta charset="utf-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="width=device-width, initial-scale=1"> <title>Selectores 5</title> </head> <body> <p id="tx">texto</p> <div class="rojo">texto en rojo</div> <p id="rj">Texto en color rojo</p> <script src="js/jquery-2.1.3.min.js"></script> <script type="text/javascript"> $(document).ready(function() { $('#tx,.rojo,#rj').css('color','red'); }); </script> </body> </html>
<!DOCTYPE html> <html lang="es"> <head> <meta charset="utf-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="width=device-width, initial-scale=1"> <title>selectores 6</title> </head> <body> <p>texto1</p> <div>texto2</div> <strong>texto3</strong> <script src="js/jquery-2.1.3.min.js"></script> <script type="text/javascript"> $(document).ready(function() { $('*').css('color','blue'); }); </script> </body> </html>
<!DOCTYPE html> <html lang="es"> <head> <meta charset="utf-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="width=device-width, initial-scale=1"> <title>selectores 7</title> </head> <body> <span id="caja"> texto simple <p>texto hijo</p> <p>texto hijo 2</p> </span> <script src="js/jquery-2.1.3.min.js"></script> <script type="text/javascript"> $(document).ready(function() { $('#caja p').css('color','blue'); }); </script> </body> </html>
<!DOCTYPE html> <html lang="es"> <head> <meta charset="utf-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="width=device-width, initial-scale=1"> <title>Selectores 8</title> </head> <body> <ul> <li class="uno">item 1</li> <li class="dos">item 2</li> <li class="tres">item 3</li> <li class="cuatro">item 4</li> </ul> <script src="js/jquery-2.1.3.min.js"></script> <script type="text/javascript"> $(document).ready(function() { $('li.uno ~ li').css('border','2px double blue'); }); </script> </body> </html>