Perguntas com a marcação «attr»

18
.prop () vs .attr ()
Portanto, o jQuery 1.6 tem a nova função prop(). $(selector).click(function(){ //instead of: this.getAttribute('style'); //do i use: $(this).prop('style'); //or: $(this).attr('style'); }) ou, nesse caso, eles fazem a mesma coisa? E se eu não tem que passar a usar prop(), todas as antigas attr()chamadas vai quebrar se eu mudar para 1.6? ATUALIZAR …
2301 javascript  jquery  dom  attr  prop 

5
Definir atributo sem valor
Como definir um atributo de dados sem adicionar um valor no jQuery? Eu quero isso: <body data-body> Eu tentei: $('body').attr('data-body'); // this is a getter, not working $('body').attr('data-body', null); // not adding anything Tudo o resto parece adicionar os segundos argumentos como uma string. É possível apenas definir um atributo …

6
Alternar atributo desativado de entrada usando jQuery
Aqui está o meu código: $("#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. …
189 jquery  toggle  attr 

7
Como alterar o href da tag <a> no botão, clique no javascript
Como alterar o hrefvalor do atributo de uma &lt;a/&gt;tag através do Javascript no botão? &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 



4
jQuery attr vs prop?
Agora, esta não é apenas outra questão de qual é a diferença , eu fiz alguns testes (http://jsfiddle.net/ZC3Lf/) modificando o prope attrde &lt;form action="/test/"&gt;&lt;/form&gt;​ com a saída sendo: 1) Teste de modificação de prop. Prop: http://fiddle.jshell.net/test/1 Attr:http://fiddle.jshell.net/test/1 2) Teste de modificação de atributo Prop: http://fiddle.jshell.net/test/1 Attr:/test/1 3) Teste de modificação …
102 javascript  jquery  attr  prop 

5
Como encontrar elementos com 'valor = x'?
Eu preciso remover o elemento que tenho value="123". Eu sei que todos os elementos com valores diferentes estão localizados em #attached_docs, mas não sei como selecionar o elemento com value="123". $('#attached_docs').find ... .remove(); Pode me ajudar?
102 jquery  find  attr 
Ao utilizar nosso site, você reconhece que leu e compreendeu nossa Política de Cookies e nossa Política de Privacidade.
Licensed under cc by-sa 3.0 with attribution required.