document.getelementbyid('sx').addeventlistener('tap',function()))
mui.plusready(function());
//頁面傳值跳轉
mui('body').on('tap','.mui-media-body', function());//news 和cz都是隨意自己定的主要是和傳給值的物件那裡用的
// mui.fire(prpage,'news',);//news 和id都是隨意自己定的主要是和傳給值的物件那裡用的 第二個id是頁面自己的id
mui.openwindow()
//子頁面接值
mui.plusready(function(){window.addeventlistener('news',function(e){//news是cardetails.html頁面自己隨意定的
var mmq =mui('#mmq');
mmq[0].innerhtml = e.detail.cz;//cz是cardetails.html頁面自己隨意定的
//mmq[0].innerhtml = e.detail.id;//id是cardetails.html頁面自己隨意定的
mui.post() 裡面不用寫url type datatyp data 等可直接把其後的值直接寫在裡面
mui.get()裡面不用寫url type datatyp data 等可直接把其後的值直接寫在裡面
mui.getjson()裡面不用寫url type datatyp data 等可直接把其後的值直接寫在裡面
HashMap知識點和紅黑樹知識點
hashmap知識點 初始容量 16 裝載因子 0.75 預設限制擴容數 64 轉換紅黑樹閾值 8 轉換鍊錶閾值 6 當鍊表長度大於8 鍊錶轉為紅黑樹 前提是hashmap容量達到64 當紅黑樹中的元素個數小於6 再轉回鍊錶 前提是根節點或者子節點為空 其實不準確 2.1 大於8,是先考慮table...
TestLink知識點Mantis知識點
testlink知識點 1 testlink系統提供了六種角色 a guest 只有讀的許可權,適合於檢視測試用例和測試需求,以及專案分析的使用者。b testdesigner 可以開展測試用例和測試需求的所有工作。c tester 只能執行測試用例。d senior tester 可以檢視和維護測...
棧和佇列 知識點
在c 標準庫 stl 中,實現了棧和佇列,方便使用,並提供了若干方法。以下作簡要介紹。1 棧 stack 說明及舉例 使用棧,要先包含標頭檔案 include 定義棧,以如下形式實現 stacks 其中type為資料型別 如 int,float,char等 棧的主要操作 s.push item 將i...