博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
easyUI拖动课程进课程表
阅读量:6696 次
发布时间:2019-06-25

本文共 2422 字,大约阅读时间需要 8 分钟。

       
拖动课程表
       //拖动的课程进入右边的课程表
$('.right td.drop').droppable({
onDragEnter:function(){
$(this).addClass('over'); }, onDragLeave:function(){
$(this).removeClass('over'); }, onDrop:function(e,source){
$(this).removeClass('over'); if ($(source).hasClass('assigned')){
$(this).append(source); } else {
var c = $(source).clone().addClass('assigned'); $(this).empty().append(c); c.draggable({
revert:true }); } } }); })
英语
数学
体育
政治
历史
地理
Monday Tuesday Wednesday Thursday Friday
08:00
09:00
10:00
11:00
14:00

转载于:https://www.cnblogs.com/LindaBlog/p/9223850.html

你可能感兴趣的文章
java集合框架01
查看>>
mysql之 mysql 5.6不停机主从搭建(一主一从基于日志点复制)
查看>>
jar包和war包的区别
查看>>
启动和停止数据库——显示例程信息
查看>>
fatal: Could not read from remote repository
查看>>
消息模板 临时参考
查看>>
手动实现Netty
查看>>
Springmvc中的拦截器interceptor及与过滤器filter的区别
查看>>
week1 - Python基础1 介绍、基本语法、流程控制
查看>>
vue作用域插槽示例
查看>>
Apache Ignite 学习笔记(四): Ignite缓存冗余备份策略
查看>>
uwsgi service 设置
查看>>
matlab x~=0
查看>>
使用线性渐变写一个歌词播放效果
查看>>
PowerDesigner最基础的使用方法入门学习
查看>>
golang -- 字符串就地取反
查看>>
Leetcode题目:Count and Say
查看>>
Linux 进程管理子系统
查看>>
MyEclipse快捷键大全
查看>>
ethereum/EIPs-1078 Universal login / signup using ENS subdomains
查看>>