为什么脚本不起作用?

时间:2016-07-07 01:49:47

标签: javascript html css

我试图点击一下div显示可拖动的div。在Google中搜索了正确的javascript,但是当我将其复制到我的HTML时,它就无效了。有人可以解释为什么以及如何解决它?

<!DOCTYPE html>
<html>
    <head>
        <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
        <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js"></script>
        <script src="http://code.jquery.com/ui/1.9.1/jquery-ui.js"></script>
        <script type="text/javascript" src="script.js"></script>

        <link type="text/css"href="./Style.css" rel="stylesheet">
        <link type="text/javascript"href="./Style.js" rel="stylesheet">
    </head>

    <body>
    <span class="about" id="but01">Click on me 1</span>
    <span class="about" id="but02">Click on me 2</span>

    <div id="s1" class="hidden" id="draggable-element">
        <div id="draggable-element">Text here</div>
    </div>

    <div id="s2" class="hidden">2</div>
    </body>
</html>

CSS:

body{
background-color: #101010;
color: #ff9900;
}

.hidden{
    display:none;
}

[draggable=true] {
    cursor: move;
}
#draggable-element {
  width:100px;
  height:100px;
  background-color:#ff9900;
  color:white;
  padding:10px 12px;
  cursor:move;
  position:relative; /* important (all position that's not `static`) */
}

JS:

    $('span[id^="but0"]').click(function(){
            var id = $(this).attr('id').substr(4);
            if($('#s' + id).is(':visible'))
                 $('#s' + id).hide();
            else
                $('#s' + id).show();
    });

var selected = null, // Object of the element to be moved
    x_pos = 0, y_pos = 0, // Stores x & y coordinates of the mouse pointer
    x_elem = 0, y_elem = 0; // Stores top, left values (edge) of the element

// Will be called when user starts dragging an element
function _drag_init(elem) {
    // Store the object of the element which needs to be moved
    selected = elem;
    x_elem = x_pos - selected.offsetLeft;
    y_elem = y_pos - selected.offsetTop;
}

// Will be called when user dragging an element
function _move_elem(e) {
    x_pos = document.all ? window.event.clientX : e.pageX;
    y_pos = document.all ? window.event.clientY : e.pageY;
    if (selected !== null) {
        selected.style.left = (x_pos - x_elem) + 'px';
        selected.style.top = (y_pos - y_elem) + 'px';
    }
}

// Destroy the object when we are done
function _destroy() {
    selected = null;
}

// Bind the functions...
document.getElementById('draggable-element').onmousedown = function () {
    _drag_init(this);
    return false;
};

document.onmousemove = _move_elem;
document.onmouseup = _destroy;+

2 个答案:

答案 0 :(得分:1)

我在最后一行的末尾找到了+符号。通过删除它,我看到它像下面的例子一样工作。

document.onmouseup = _destroy;+

以下是示例:

&#13;
&#13;
$('span[id^="but0"]').click(function() {
  var id = $(this).attr('id').substr(4);
  if ($('#s' + id).is(':visible'))
    $('#s' + id).hide();
  else
    $('#s' + id).show();
});

var selected = null, // Object of the element to be moved
  x_pos = 0,
  y_pos = 0, // Stores x & y coordinates of the mouse pointer
  x_elem = 0,
  y_elem = 0; // Stores top, left values (edge) of the element

// Will be called when user starts dragging an element
function _drag_init(elem) {
  // Store the object of the element which needs to be moved
  selected = elem;
  x_elem = x_pos - selected.offsetLeft;
  y_elem = y_pos - selected.offsetTop;
}

// Will be called when user dragging an element
function _move_elem(e) {
  x_pos = document.all ? window.event.clientX : e.pageX;
  y_pos = document.all ? window.event.clientY : e.pageY;
  if (selected !== null) {
    selected.style.left = (x_pos - x_elem) + 'px';
    selected.style.top = (y_pos - y_elem) + 'px';
  }
}

// Destroy the object when we are done
function _destroy() {
  selected = null;
}

// Bind the functions...
document.getElementById('draggable-element').onmousedown = function() {
  _drag_init(this);
  return false;
};

document.onmousemove = _move_elem;
document.onmouseup = _destroy;
&#13;
body {
  background-color: #101010;
  color: #ff9900;
}
.hidden {
  display: none;
}
[draggable=true] {
  cursor: move;
}
#draggable-element {
  width: 100px;
  height: 100px;
  background-color: #ff9900;
  color: white;
  padding: 10px 12px;
  cursor: move;
  position: relative;
  /* important (all position that's not `static`) */
}
&#13;
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js"></script>
<script src="http://code.jquery.com/ui/1.9.1/jquery-ui.js"></script>

<span class="about" id="but01">Click on me 1</span>
<span class="about" id="but02">Click on me 2</span>

<div id="s1" class="hidden" id="draggable-element">
  <div id="draggable-element">Text here</div>
</div>

<div id="s2" class="hidden">2</div>
&#13;
&#13;
&#13;

答案 1 :(得分:1)

更改此部分:

<link type="text/javascript"href="./Style.js" rel="stylesheet"> 

<script src='./Style.js' >