iframe 无边框设置
程序员文章站
2022-07-04 20:06:30
...
[color=red]1[/color]
iframe默认带有立体感的边框,一开始以为用css的border-style属性能去掉,后来发现那是在做梦,只能通过在iframe标签内部用frameborder="no" border="0" 这个两个属性才能把边框去点,而css里好象找不到和这两个属性对应的东东,郁闷.
[color=red]2[/color]
搞验证码的时候
ie下能通过
来更新验证码,而火狐却不能,好象和缓存有关,只能通过在后面加一个随机变量来解决
<iframe src="CenterForProducts.htm" id="CenterMainCenter" frameborder="no" border="0" marginwidth="0" marginheight="0" scrolling="no" allowtransparency="yes"></iframe>
iframe默认带有立体感的边框,一开始以为用css的border-style属性能去掉,后来发现那是在做梦,只能通过在iframe标签内部用frameborder="no" border="0" 这个两个属性才能把边框去点,而css里好象找不到和这两个属性对应的东东,郁闷.
[color=red]2[/color]
搞验证码的时候
<img src="<%=path%>/web/code.jsp" id="codeImg" />
ie下能通过
$("#codeImg").attr("src","<%=path%>/web/code.jsp");
来更新验证码,而火狐却不能,好象和缓存有关,只能通过在后面加一个随机变量来解决
$("#codeImg").attr("src","<%=path%>/web/code.jsp?mu="+Math.random());
上一篇: Android EditText设置边框
下一篇: 比较全面的 CSS 选择器总结