例子,jquery获得div的id。
<div id="product_shift_out_{m}"> </div>
<script language = "
javascript" type="text/javascript">
$(document).ready(function(){
name = $('div').eq(0).attr('id');
alert(name)
});
</script>
eq(0)是取第一个jq元素。
eq(index)
匹配一个给定索引值的元素
--------------
Matches a single element by its index.
返回值
Element
参数
index (Number) : 从 0 开始计数
例子,查找第二行。
<table>
<tr><td>Header 1</td></tr>
<tr><td>Value 1</td></tr>
<tr><td>Value 2</td></tr>
</table>
jQuery 代码:
$("tr:eq(1)")
结果:
[ <tr><td>Value 1</td></tr> ]