日期:2014-05-17  浏览次数:20476 次

最近在开发后台管理,想问下广告排期表怎么做?

类似这样的表格,请问是用某个JS插件还是PHP程序画?

如果是用PHP写。请问具体的思路怎么样?

------解决方案--------------------
对!
给个测试例(考虑到兼容性,使用了 jquery)
<script type="text/javascript">
$(function(){
  $('#box td').dblclick(function(e){
    var row = $(this).parent().prevAll().length;
    var col = $(this).prevAll().length;
    $("span").text((row+1) + ":" + (col+1));
    $(this).toggleClass('yellow');
    //在这里你可以将 row、col 发送给 php
  });
});
</script>
<style>
.yellow { background-color: yellow }
</style>
  
<table id=box>
<tr>
<td>鼠</td><td>标</td><td>双</td><td>击</td><td>改</td><td>变</td><td>状</td><td>态</td>
</tr>
<tr>
<td>鼠</td><td>标</td><td>双</td><td>击</td><td>改</td><td>变</td><td>状</td><td>态</td>
</tr>
</table><span></span>