我有一个带有广告(A)的主页面。点击广告(A)应打开页面(B),其中包含“iframe”,I帧应显示html文章页面(C)。页面(B)中的这个iframe用于打开很多文章,但我不知道如何使用HREF或ONCLICK来定位特定的文章?请帮忙。
答案 0 :(得分:0)
A.html:
<a target="_blank" href="B.html?go=C.html">my ad</a>
B.html:
<script>
function getParameterByName(name) {
name = name.replace(/[\[]/, "\\[").replace(/[\]]/, "\\]");
var regex = new RegExp("[\\?&]" + name + "=([^&#]*)"),
results = regex.exec(location.search);
return results === null ? "" : decodeURIComponent(results[1].replace(/\+/g, " "));
}
document.write('<iframe src="' + getParameterByName("go") + '"></iframe>');
</script>
C.html:
lorem ipsum dolar sit amet