`
lichengyezi
  • 浏览: 203599 次
  • 性别: Icon_minigender_1
  • 来自: 齐齐哈尔
文章分类
社区版块
存档分类
最新评论
文章列表
在网上找了两种方法如下: 在<boby>里加入scroll="no",可隐藏滚动条; 在<boby>里加入style="overflow-x:hidden",可隐藏水平滚动条;加入style="overflow-y:hidden",可隐藏垂直滚动条。 但试了都不行,最后终于找到了正确的方法: 被包含页面里加入 <style> html { overflow-x:hidden; } </style> 有一段解释是这样说的:body{ overflow-x:hidden; }在标准 DTD 下 ...
官方:http://www.xenocode.com/browsers/ 下载: IE8: http://start.xenocode.com/Layers/IE8/8-0-0-0__0/IE8.exe IE7: http://start.xenocode.com/Layers/IE7/7-0-0-0__0/IE7.exe IE6: http://start.xenocode.com/Layers/IE6/6-0-0-0__1/IE6.exe
$('#button').attr('disabled',"true");添加disabled属性 $('#button').removeAttr("disabled"); 移除disabled属性
$("#sealpicture").attr("src",list.rows[0].SEALPICTURE); sealpicture为赋值的img的id,list.rows[0].SEALPICTURE为img的路径。
1.select * from (select * from table order by dbms_random.value ) where rownum<=1 2.select * from (select * from table order by sys_guid() ) where rownum<=1
Global site tag (gtag.js) - Google Analytics