Domande taggate «attr»

18
.prop () vs .attr ()
Quindi jQuery 1.6 ha la nuova funzione prop(). $(selector).click(function(){ //instead of: this.getAttribute('style'); //do i use: $(this).prop('style'); //or: $(this).attr('style'); }) o in questo caso fanno la stessa cosa? E se io non devo passare ad usare prop(), tutte le vecchie attr()chiamate si romperà se posso passare a 1,6? AGGIORNARE selector = …
2301 javascript  jquery  dom  attr  prop 

5
Imposta attributo senza valore
Come posso impostare un attributo di dati senza aggiungere un valore in jQuery? Voglio questo: <body data-body> Provai: $('body').attr('data-body'); // this is a getter, not working $('body').attr('data-body', null); // not adding anything Tutto il resto sembra aggiungere il secondo argomento come stringa. È possibile impostare un attributo senza valore?

6
Attiva / disattiva l'attributo di input disabilitato utilizzando jQuery
Ecco il mio codice: $("#product1 :checkbox").click(function(){ $(this) .closest('tr') // Find the parent row. .find(":input[type='text']") // Find text elements in that row. .attr('disabled',false).toggleClass('disabled') // Enable them. .end() // Go back to the row. .siblings() // Get its siblings .find(":input[type='text']") // Find text elements in those rows. .attr('disabled',true).removeClass('disabled'); // Disable them. }); …
191 jquery  toggle  attr 

7
Come cambiare href di <a> tag sul pulsante fare clic su JavaScript
Come modificare il hrefvalore dell'attributo di un &lt;a/&gt;tag tramite Javascript sul clic sul pulsante? &lt;script type="text/javascript"&gt; function f1() { document.getElementById("abc").href="xyz.php"; } &lt;/script&gt; &lt;a href="" id="abc"&gt;jhg&lt;/a&gt; &lt;a href="" id="" onclick="f1()"&gt;jhhghj&lt;/a&gt;
127 javascript  href  attr 

15
Errore: (9, 5) errore: risorsa android: attr / dialogCornerRadius non trovata
Quindi ho installato Android Studio 3.0.1 e non appena ha aperto il gradle costruito e ha mostrato i seguenti errori. Ho provato ad aggiungere dipendenze come design e supporto, ma invano. Qualcuno potrebbe aiutarmi? Grazie in anticipo. Mostra che alcuni attributi come dialogCornerRadius e fontVariation Settings non sono stati trovati.
118 android  attr 


4
jQuery attr vs prop?
Ora, questo non è solo un altro Qual è la domanda differenza , ho fatto alcuni test (http://jsfiddle.net/ZC3Lf/) modificando la prope attrdel &lt;form action="/test/"&gt;&lt;/form&gt;​ con l'uscita di essere: 1) Test di modifica dell'elica Prop: http://fiddle.jshell.net/test/1 Attr:http://fiddle.jshell.net/test/1 2) Test di modifica Attr Prop: http://fiddle.jshell.net/test/1 Attr:/test/1 3) Attr quindi Test di modifica …
102 javascript  jquery  attr  prop 

5
Come trovare elementi con "valore = x"?
Devo rimuovere l'elemento che ha value="123". So che tutti gli elementi con valori diversi si trovano in #attached_docs, ma non so come selezionare l'elemento con value="123". $('#attached_docs').find ... .remove(); Mi potete aiutare?
102 jquery  find  attr 
Utilizzando il nostro sito, riconosci di aver letto e compreso le nostre Informativa sui cookie e Informativa sulla privacy.
Licensed under cc by-sa 3.0 with attribution required.