mui頁面傳值

2022-06-21 12:54:10 字數 971 閱讀 3187

以下**全部在script標籤內

一.通過mui.openwindow()開啟新頁面(若目標頁面為已預載入成功的頁面,則在openwindow方法中傳遞的extras引數無效);

mui.openwindow(

});接收引數:

1:varself=plus.webview.currentwebview();

varname =self.name;

varversion =self.version;

2:mui.plusready(function(event));

//開啟新聞詳情

mui.openwindow();

}) 接收引數:

window.addeventlistener('getdetail',function(event));

三.設定全域性引數

var name = 'name';

var id = '10';

localstorage.setitem('$name', name);

localstorage.setitem('$id',id);

接收引數:

var name = localstorage.getitem('$name');

var id = localstorage.getitem('$id');

mui頁面傳值 親測有用

兩個頁面,乙個列表頁面list.html,乙個詳情頁detail.html.列表頁面有很多個li,都是從後台渲染而來的,每乙個li有屬於他自己的id li裡面有標題,時間之類的資料 標題 詳情頁 標題,時間之類的,裡面有標題,時間之類的資料 標題 我希望從每乙個li點進詳情頁,詳情頁的標題之類的資料...

關於HBuilder使用MUI頁面傳值

遇到問題就記錄下來,希望能幫到曾和我一樣困惑的man 關於hbuilder跳轉頁面,使用了內部的封裝方法mui,跳轉的時候使用 mui.openwindow url html 指定的頁面即可 但是在傳值的時候捏,這裡不應該因為mui的方法干擾,直接還在 後面拼接,當然這是get方式傳值,在使用hbu...

MUI開發指南(四) MUI 頁面間傳值

extras 新視窗的額外擴充套件引數,可用來處理頁面間傳值 例如 var webview mui.openwindow console.log webview.name 輸出mui字串注意 擴充套件引數僅在開啟新視窗時有效,若目標視窗為預載入頁面,則通過mui.openwindow方法開啟時傳遞的...