tool.html:
document.getElementById("createForm").addEventListener('tap', function() {
mui.openWindow({
url: 'createForm.html'
})
})
createForm.htm:
mui.openWindow({
url:'tool.html'
})
person.html:
mui.openWindow({
url: 'createForm.html?person='+checkedValues,
extras: {
person:checkedValues
}
})
0 个回复