啥情况啊 完全没反应

来源:3-1 拖曳插件——draggable

雨未停丶

2018-11-09 14:15

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

<html xmlns="http://www.w3.org/1999/xhtml">

    <head>

        <title>拖曳插件</title>

        <link href="style.css" rel="stylesheet" type="text/css" />

        <script src="http://www.imooc.com/data/jquery-1.8.2.min.js" type="text/javascript"></script>

        <script src="http://www.imooc.com/data/jquery-ui-1.9.2.min.js" type="text/javascript"></script>

    </head>

    

    <body>

        <div id="divtest">

            <div id="x" class="drag">沿x轴拖拽</div>

            <div id="y" class="drag">沿y轴拖拽</div>

        </div>

        

        <script type="text/javascript">

            $(function () {

                $("#x").draggable({ containment:"parent",axis: "x"})

                $("#y").draggable({ containment:"parent",axis: "y" })

            });

        </script>

    </body>

</html>


写回答 关注

1回答

  • 慕工程9304136
    2018-12-11 09:59:05

    将引用js中的http改为https

jQuery基础(五)一Ajax应用与常用插件

如何用jquery实现ajax应用,加入学习,有效提高前端开发速度

69100 学习 · 400 问题

查看课程

相似问题