步骤:1.遍历table2.判断table中是否包含某个值function is_include(value, tab) for k,v in ipairs(tbl) do if v == value then return true end end ...
確定! 回上一頁