HTMLの前に送信値を実現します.
809 ワード
今日はお客様のためのプロトタイプを作る時に、これまでの間で価値を伝える問題に出会いました.googleは次のような解決策を得ました.
最初のhtmlページでは、次のような内容を使います.
最初のhtmlページでは、次のような内容を使います.
function showMessage(){
window.location='searchCustomerList.html?from=addCustomer';
}
2番目のhtmlページでは、以下のJavascriptでfromの値を解析します.function getFrom(){
var hrefstr,pos,parastr,eqpos,result;
hrefstr = window.location.href;
pos = hrefstr.indexOf("?")
if(pos>0){
parastr = hrefstr.substring(pos+1);
eqpos = parastr.indexOf("=");
result = parastr.substring(eqpos+1);
}
if(result=='addCustomer'){
document.getElementById('message').style.display="block";
}
}
できます