以下是我用于实现datetimepicker的玉代码。
但我收到错误
未捕获的TypeError:undefined不是函数
它指向datetimepicker
函数。
我已经在stackoverflow中看到了很多与此相关的问题。但没有人在帮助。如果给予任何帮助,将不胜感激。
我觉得它只与加载jQuery文件有关。
以下是使用的代码:
doctype html
html
head
script(src='https://ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js')
script(src='https://code.jquery.com/jquery-1.10.2.js')
script(src='https://code.jquery.com/ui/1.10.0/jquery-ui.js')
script(src='https://maxcdn.bootstrapcdn.com/bootstrap/3.3.1/js/bootstrap.min.js')
body
link(rel='stylesheet', href='https://maxcdn.bootstrapcdn.com/bootstrap/3.2.0/css/bootstrap.min.css')
link(rel='stylesheet', href='/stylesheets/style.css')
link(rel='stylesheet', href='https://code.jquery.com/ui/1.11.4/themes/smoothness/jquery-ui.css')
block content
script(src='/javascripts/script.js')
.container
.row
.col-sm-6
.form-group
datetimepicker1.input-group.date
input.form-control(type='text')
span.input-group-addon
span.glyphicon.glyphicon-calendar
script(type='text/javascript').
$(document).ready(function () {
$('#datetimepicker1').datetimepicker();
});