javascript - data - obtener valor de un boton jquery
¿Cómo obtener el atributo id de datos? (11)
Acceder al atributo de datos con su propia id
es un poco fácil para mí.
$("#Id").data("attribute");
function myFunction(){
alert($("#button1").data("sample-id"));
}
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<button type="button" id="button1" data-sample-id="gotcha!" onclick="myFunction()"> Clickhere </button>
Estoy usando el plugin jQuery quicksand. Necesito obtener el ID de datos del elemento seleccionado y pasarlo a un servicio web. ¿Cómo obtengo el atributo id de datos? Estoy usando el método .on()
para volver a enlazar el evento de clic para los elementos ordenados.
$("#list li").on(''click'', function() {
// ret = DetailsView.GetProject($(this).attr("#data-id"), OnComplete, OnTimeOut, OnError);
alert($(this).attr("#data-id"));
});
<script src="https://code.jquery.com/jquery-3.3.1.slim.min.js"></script>
<ul id="list" class="grid">
<li data-id="id-40" class="win">
<a id="ctl00_cphBody_ListView1_ctrl0_SelectButton" class="project" href="#">
<img src="themes/clean/images/win.jpg" class="project-image" alt="get data-id" />
</a>
</li>
</ul>
Este fragmento de código devolverá el valor de los atributos de datos, por ejemplo: ID de datos, tiempo de datos, nombre de datos, etc., que he mostrado para el ID
<a href="#" id="click-demo" data-id="a1">Click</a>
js
$(this).data("id");
// obtener el valor del identificador de datos -> a1
$(this).data("id", "a2");
// esto cambiará el ID de datos -> a2
$(this).data("id");
// obtener el valor del ID de datos -> a2
Nota IMPORTANTE. Tenga en cuenta que si ajusta el atributo de data-
dinámicamente a través de JavaScript, NO se reflejará en la función jQuery de data()
. Tienes que ajustarlo a través de data()
función de data()
también.
<a data-id="123">link</a>
js
$(this).data("id") // returns 123
$(this).attr("data-id", "321"); //change the attribute
$(this).data("id") // STILL returns 123!!!
$(this).data("id", "321")
$(this).data("id") // NOW we have 321
Para obtener el contenido del atributo data-id
(como en <a data-id="123">link</a>
), debe utilizar
$(this).attr("data-id") // will return the string "123"
o .data()
(si usa jQuery más reciente> = 1.4.3)
$(this).data("id") // will return the number 123
y la parte posterior a los data-
debe estar en minúsculas, por ejemplo, data-idNum
no funcionará, pero data-idnum
.
Si no está preocupado por los antiguos navegadores de IE, también puede usar la API de conjunto de datos HTML5
HTML
<div id="my-div" data-info="some info here" data-other-info="more info here">My Awesome Div</div>
JS
var myDiv = document.querySelector(''#my-div'');
myDiv.dataset.info // "some info here"
myDiv.dataset.otherInfo // "more info here"
Demostración: http://html5demos.com/dataset
Lista completa de asistencia del navegador: http://caniuse.com/#feat=dataset
Si queremos recuperar o actualizar estos atributos utilizando el JavaScript nativo existente, podemos hacerlo utilizando los métodos getAttribute y setAttribute como se muestra a continuación:
A través de JavaScript
<div id=''strawberry-plant'' data-fruit=''12''></div>
<script>
// ''Getting'' data-attributes using getAttribute
var plant = document.getElementById(''strawberry-plant'');
var fruitCount = plant.getAttribute(''data-fruit''); // fruitCount = ''12''
// ''Setting'' data-attributes using setAttribute
plant.setAttribute(''data-fruit'',''7''); // Pesky birds
</script>
A través de jQuery
// Fetching data
var fruitCount = $(this).data(''fruit'');
OR
// If you updated the value, you will need to use below code to fetch new value
// otherwise above gives the old value which is intially set.
// And also above does not work in ***Firefox***, so use below code to fetch value
var fruitCount = $(this).attr(''data-fruit'');
// Assigning data
$(this).attr(''data-fruit'',''7'');
Sorprendido nadie mencionó:
<select id="selectVehicle">
<option value="1" data-year="2011">Mazda</option>
<option value="2" data-year="2015">Honda</option>
<option value="3" data-year="2008">Mercedes</option>
<option value="4" data-year="2005">Toyota</option>
</select>
$("#selectVehicle").change(function () {
alert($(this).find('':selected'').data("year"));
});
Aquí está el ejemplo de trabajo: https://jsfiddle.net/ed5axgvk/1/
Yo uso $ .data - http://api.jquery.com/jquery.data/
//Set value 7 to data-id
$.data(this, ''id'', 7);
//Get value from data-id
alert( $(this).data("id") ); // => outputs 7
usando jQuery:
$( ".myClass" ).load(function() {
var myId = $(this).data("id");
$(''.myClass'').attr(''id'', myId);
});
HTML
<span id="spanTest" data-value="50">test</span>
JS
$(this).data().value;
o
$("span#spanTest").data().value;
ANS: 50
¡Funciona para mi!
var id = $(this).dataset.id
¡funciona para mi!