select点击option跳转指向iframe
<select οnchange="bknew.location.href=this.options[this.selectedIndex].value;">
<option value="1.html">111</option>
<option value="2.html">222</option>
</select>
<iframe width="200" height="100" scrolling="no" src="1.html" name="bknew" style="border:none;" frameborder="0" ></iframe>
a链接跳转指向iframe
<a href="1.html" target="a">2011</a>
<a href="2.html" target="a">2012</a>
<iframe width="200" height="100" scrolling="no" id="a" name="a" src="1.html"></iframe>