“Zmień html div jQuery” Kod odpowiedzi

Zmień html div jQuery

// html
 <div class="col-xs-2 col-sm-2 col-md-2 col-lg-2 total-price bold red"> 0  </div>

// jquery
var price = 1000;
$('.total-price').html(price);
$('.total-price').text(price);

Zidane (Vi Ly - VietNam)

Zmień HTML za pomocą JQuery

//Takes input from entire page and uses it to change the HTML of h1
$(document).keypress(function(event){
  $("h1").text(event.key);
});
Crazy Civet

Odpowiedzi podobne do “Zmień html div jQuery”

Pytania podobne do “Zmień html div jQuery”

Więcej pokrewnych odpowiedzi na “Zmień html div jQuery” w HTML

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

Przeglądaj inne języki kodu