我有一个嵌入了外部页面的iframe的页面。我想找到邮政编码
这是我的iframe:
<iframe src="http://mortgagerates.icanbuy.com/?zip=" width="1020" height="1200">
http://mortgagerates.icanbuy.com/?zip=10458(主要网站)
但我希望我的框架和我的浏览器网址如下:
http://www.mysite.com/?zip=10458(我想要那样的东西)
这在wordpress中是否可行?如何?
答案 0 :(得分:2)
请检查..我希望工作......
<iframe src="http://mortgagerates.icanbuy.com/?zip" width="1020" height="1200" class="iframe-wrapper">
并添加此jQuery。多数民众赞成!
<script type="text/javascript">
$(function() {
var search = window.location.search;
search = search.replace("?","&");
$(".iframe-wrapper").attr("src", $(".iframe-wrapper").attr("src")+search);
});
</script>
答案 1 :(得分:0)
这是ajax页面。你想使用ajax。
http://mortgagerates.icanbuy.com/ajax/rates-search?callback=jQuery17209362620610679678_1385958692723&source=1&results_count=0&period=PERIOD_FIXED_30YEARS&state=33&property_type=34&occupancy=49&fico=740&points=1.5¤tly_working=Yes&property_interested=Yes&show_fha=0&cashout=0&city=10458&valoans=0&militaryaff=1&hadvabefore=0&rate_lock=99&loan=200000&transaction=54<v=80&cltv=80&DO_UPDATE_WRITE=0&id=d4ea9f8db0477778&external=0&_=1385958692873
您需要将zipcode
传递给city=10458
。它返回json编码格式。你只需将它解析为你的设计。