简体   繁体   中英

how get the value of data info when selected option

how get value of data-info (@Libelle) in javascript when selected option

<select id="selectVal">
<option>1</option>
<option>2</option>
</select>
<div data-info="@Libelle"></div>

<script>
...
</script>

Use a change event, use data() to get the value:

$('#selectVal').change(function() {
 var info =  $('[data-info]').data('info');
 alert(info);
});

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM