獲取列表中指定元素的索引
index()方法
注意index方法是列表物件中的,因此使用時候前面需要先加入列表物件才可以
1.如果查詢列表中存在n個相同元素,只返回相同元素中的第乙個元素的索引
2.如果查詢的元素在列表中不存在,則會丟擲valueerror
3.還可以在指定的start和stop之間進行查詢
注意這邊的start和stop是[start, stop),是不包括索引為stop的元素
example:
lst = ['hello', 'world', 123, 345, 'hello']
print(lst.index('hello'))
#print(lst.index('123')) error:valueerror
#print(lst.index('hello', 1, 4)) [1,4)
print(lst.index('hello', 1, 5))
總的來說,需要明確的一點就是index函式實在列表物件下的,因此不可以直接呼叫,需要列表元素在前面去實現呼叫即list.index()
jQuery 獲取指定元素
1 利用標籤名 獲取元素 標籤名 2 通過id獲取元素 id name 3 通過 類名獲取元素 classname 4 一次性獲取多個元素 元素名,元素名,元素名 5 通過指定層次關係獲取元素 祖先 子孫 父 子 前 後 兄 弟 6 根據元素的屬性值獲取元素 attribute attribute ...
sql獲取陣列指定元素
需求 獲取字元陣列1,2,3的第2個元素 方法 通過自定義函式來實現 獲取字串陣列某個元素 if exists select 1from sysobjects where id object id get strarraystrofindex drop function get strarrayst...
DataTables獲取指定元素的行資料
法1 用jquey獲取,var row edit parent parent 缺點 只能獲取dom上的東西,不能獲取沒有渲染的資料 法2 首先繫結行號到元素上 example datatable 然後根據元素取出行號 var rowindex btnedit attr data rowindex 最...