JSFiddle代码无法在我自己的页面中工作

时间:2014-01-01 03:16:41

标签: javascript jquery html css google-chrome

我有一些code that is working in JSFiddle但我无法在自己的页面中运行。

HTML

<body style="background-color: #000000">
  <form oninput="amount.value=range.value" style="color:#1ec2c5;">
  <output name="amount" for="range">2</output><a> KM</a>
  <input type="range" name="range" min="1" max="9" step="1" value="2" id="test">
</body>

CSS

input[type="range"]{
  -webkit-appearance: none;
  -moz-apperance: none;
  border-radius: 6px;
  width: 225px;
  height: 6px;
  border: 2px solid #eceef1;
  outline:none;
  background-image: -webkit-gradient(
    linear,
    left top,
    right top,
    color-stop(0.15, #eceef1),
    color-stop(0.15, #0c0d17)
  ); }

input[type='range']::-webkit-slider-thumb {
  -webkit-appearance: none !important;
  background-color: #1ec2c5;
  border: 3px solid #000000;
  height: 25px;
  width: 25px;
  border-radius: 20px;}

的JavaScript

$('input[type="range"]').change(function () {
var val = ($(this).val() - $(this).attr('min')) / ($(this).attr('max') - $(this).attr('min'));

$(this).css('background-image',
            '-webkit-gradient(linear, left top, right top, '
            + 'color-stop(' + val + ', #eceef1), '
            + 'color-stop(' + val + ', #0c0d17)'
            + ')'
            ); 
});

如果我接受代码并放入HTML / JS(头部链接)/ CSS(头部链接)文件,那么CSS可以工作,但JavaScript不能。

我尝试用元素的id替换$(this),但仍然没有运气。

3 个答案:

答案 0 :(得分:12)

  

“如果我接受代码并输入HTML / JS(链接在头部)”

问题是您已将代码放在<head>中,因此它在解析输入元素之前运行,因此$('input[type="range"]')找不到元素。

如果你看一下JSFiddle中的“Frameworks&amp; Extensions”选项,你会发现它默认将你的JS代码放在一个onload处理程序中,所以你的代码直到整个页面才会运行装了。要使代码在您自己的网页上以相同的方式运行,您需要将其包装在您自己的onload处理程序中,或者 - 因为您正在使用jQuery - 将其包装在document ready handler中:

$(document).ready(function() {
    // your code here
});

或者short form是这样的:

$(function() {
    // your code here
});

或者在页面末尾包含您的脚本,以便在之后运行它已尝试操作的元素。

答案 1 :(得分:0)

您确定已在头文件中包含jQuery库吗? 对于各种图书馆,请查看Google的开发者网站。 https://developers.google.com/speed/libraries/ 这是你正在寻找的jQuery库 - 确保你把它放在你的JS文件之前。

 <script src="//ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js"></script>

^那应该在你的标题中。 ;)

答案 2 :(得分:0)

  1. 在小提琴编辑器中,单击 javaScript + No-Library(纯JS)
  2. 下拉菜单将为您提供选项。
  3. 第三个选项是load-Type-单击并选择否wrap-bottom of<head>
  4. 运行代码
  5. 享受!