“Dodaj ID jQuery” Kod odpowiedzi

Dodaj ID jQuery

$('element').attr('id', 'value');
Adventurous Alligator

Jak dodać identyfikator w jQuery

$( "li" ).add( "<p id='new'>new paragraph</p>" )
  .css( "background-color", "red" );
Dev

Jak dodać identyfikator w jQuery

<h2>Greetings</h2>
<div class="container">
  <div class="inner">
    Hello
    <p>Test</p>
  </div>
  <div class="inner">
    Goodbye
    <p>Test</p>
  </div>
</div>
Dev

Jak dodać identyfikator w jQuery

$( ".container" ).append( $( "h2" ) );
Dev

Jak dodać identyfikator w jQuery

var pdiv = $( "p" );
pdiv.add( "div" ); // WRONG, pdiv will not change
Dev

Jak dodać identyfikator w jQuery

$( "li" ).add( document.getElementsByTagName( "p" )[ 0 ] )
  .css( "background-color", "red" );
Dev

Odpowiedzi podobne do “Dodaj ID jQuery”

Pytania podobne do “Dodaj ID jQuery”

Więcej pokrewnych odpowiedzi na “Dodaj ID jQuery” w JavaScript

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu