我正在尝试将下拉值添加到下表中的属性。但它似乎并没有使用.attr()
来自jQuery
这是jQuery:
$("#datasize").change(function(){
var element = $(this).find('option:selected');
var myTag = element.val();
$('#filterTable1').attr('data-page-size' , myTag);
});
这是html:
<select id="datasize">
<option value="10">My option</option>
<option value="20">My other option</option>
</select>
<table class="footable" data-page-size="" id="filterTable1">
<thead>
<tbody>
</tbody>
</thead>
</table>
任何帮助,将不胜感激!