sharepoint天气预报问题
在sharepoint中我引用了如下天气预报代码
<iframe name="weather_inc" src="http://cache.xixik.com.cn/7/dalian/" width="225" height="90" frameborder="0" marginwidth="0" marginheight="0" scrolling="no"></iframe></td>
有如下问题不知如何解决:
每次一点击代码生成的天气预报画面时,总是链接到此天气预报的页面
而我想要的效果是点击此天气预报画面后不会链接到一个新页面,做不了任何链接
请教各位大虾这个问题该如何解决?
[解决办法]
<html>
<body>
<div style="width:225px;height:100px;z-index:100;background:#000;position:absolute;left:0;top:0;filter:alpha(opacity=0);-moz-opacity:0;"></div>
<iframe name="weather_inc" src="http://cache.xixik.com.cn/7/dalian/" width="225" height="90" frameborder="0" marginwidth="0" marginheight="0" scrolling="no"></iframe>
</body>
</html>
我觉得可以用div 来覆盖掉
这个要放在sharepoint页面上的时候 div的位置要调整 才能盖上,
你先单独运行一下上面的程序