gpt4 book ai didi

javascript - Rails 4 - 计时器 (jQuery.Countdown)

转载 作者:行者123 更新时间:2023-12-02 14:40:49 25 4
gpt4 key购买 nike

我正在尝试在我的 Rails 中创建一个计时器。但我收到此错误:

jquery.countdown.min.self-6add0e5….js?body=1:7 Uncaught TypeError: Cannot read property 'createPlugin' of undefined

我补充一下:

  • jquery.countdown.min.jsassets/javascripts
  • jquery.countdown.cssassets/stylesheets
  • jQuery.js 存在并且工作正常
  • 进入application.js - //= require jquery.countdown.min
  • 进入application.scss - *= require jquery.countdown

然后我创建:

查看

<th width="20%" class="timeRem" data-countdown-until="<%= 10.days.from_now %>"></th>

timer.js.coffee

 Timers =
init: ->
@initCountdownUntil()
@initCountdownSince()

initCountdownUntil: ->
$('[data-countdown-until]').each (index, element) ->
$element = $(element)
date = new Date($element.data('countdown-until'))
$element.countdown(until: date)

initCountdownSince: ->
$('[data-countdown-since]').each (index, element) ->
$element = $(element)
date = new Date($element.data('countdown-since'))
$element.countdown(since: date)

window.Timers = Timers

不知道如何解决它,感谢任何建议和帮助。

最佳答案

按照以下顺序将脚本放置在页面上:jquery.js 然后 jquery.plugin.js 然后 jquery.countdown.js

[]

引用:http://keith-wood.name/countdown.html

关于javascript - Rails 4 - 计时器 (jQuery.Countdown),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37035254/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com