`
whmjxa
  • 浏览: 16118 次
  • 性别: Icon_minigender_1
  • 来自: 杭州
文章分类
社区版块
存档分类
最新评论
文章列表
这个问题在firefox下特别严重,可以给td加上empty-cells: show;  
<html> <body> <table id="mytable"> <tr> <th >adf</th> <th >123</th> <th >342</th> <th >4545</th> </tr> </table> <script> var fragment = document.createDocumentFragment(); var ta ...
js替换内容 var test = "hi, everyone, this is just a test"; var res = test.replace("e"," "); 只会替换第一个e alert(res); var resu = test.replace(/e/g, " ");替换所有e alert(resu); js验证是否有中文 var tt = "hello world!"; var t = "hello你好"; alert(escape( ...
$(document).ready( function() { var array = $(".tableCell span"); for ( var i = 0; i < array.length; i++) { var height = array[i].offsetHeight; if (height > 65) { var content = array[i].innerHTML; var width = array[i].offsetWidth; if (content.length > ...
<ul id="ul"> <li id="li1">dododo</li> <li id="li2">dododo</li> <li id="li3">dododo</li> </ul>  如果想对多个li对象进行事件侦听,这时候用事件委托是不二的选择了。事件委托就是利用了事件冒泡,对document中某一个元素进行侦听,其实也就是侦听了其下的所有子元素。 javascript代码如下: var Eve ...
首先是数据源的配置,内容如下: <?xml version="1.0" encoding="UTF-8" ?> <!DOCTYPE configuration PUBLIC "-//mybatis.org//DTD Config 3.0//EN" "http://mybatis.org/dtd/mybatis-3-config.dtd"> <configuration> <environments default="development"& ...
Global site tag (gtag.js) - Google Analytics