“So fügen Sie Attribut in jQuery hinzu” Code-Antworten

So fügen Sie Attribut in jQuery hinzu

$('#someid').attr('name', 'value');
2 Programmers 1 Bug

JQuery Attr

$( some_item ).attr( "id", "some-id" );
// for setting multiple attributes, it's similar to the css() property. However, quotes are not always required for attr()
$( some_item ).attr({
  id: "some-id",
  // or others.
  title: "Opens in a new window",
  // attributes which contain dash(-), should be covered in quotes.
  "data-value": "internal link"
});
Exuberant Eagle

Ähnliche Antworten wie “So fügen Sie Attribut in jQuery hinzu”

Fragen ähnlich wie “So fügen Sie Attribut in jQuery hinzu”

Weitere verwandte Antworten zu “So fügen Sie Attribut in jQuery hinzu” auf JavaScript

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen