mui键盘收起、页面的跳转方式2

页面跳转方式一:

mui.openWindow({
url : 'mspck.jsp?openid='+ data.openid + '&ddbh=' + data.ddbh,
id : 'mspck.jsp'
});

页面跳转方式二:

window.location.href = '<%=request.getContextPath() %>/orderAction/mspOrderingQuery2.action?openid='+ data.openid + '&ddbh=' + data.ddbh;

// 收起键盘
document.activeElement.blur();

原文地址:https://www.cnblogs.com/binTke170120/p/7000730.html