这是场景(在.NET中,所以Jquery是必须的):
我的代码:
<pre>
function goToPage() {
var page = document.getElementById('ZipCode').value;
window.location = "results.aspx?=ZipCode" + page;
}
<input type="text" id="ZipCode"/>
<button type="button" value="submit" id="ZipSearch"
onclick="goToPage();">SEARCH</button>
</pre>
results.aspx页面将类似www.website.com/results.aspx?=91343,然后显示加州div,并隐藏其他div。
<div id="california" style="display:none"> <p>California</p> </div> <div id="washington" style="display:none"> <p>Washington</p> </div> if (window.location.href.indexOf("91343") > -1) { $('#washington').hide(); $('#nationwide').show();} if (window.location.href.indexOf("98001") > -1) { $('#washington').show(); $('#nationwide').hide();}
我只需使用一个邮政编码即可使用它,如何使用多个邮政编码? 谢谢