我已经在我的TS文件中添加了一个简单的日期选择器。仍然没有反映在我的网页上。我已经从NPM安装了jquery,jquery-Ui并导入了同样的东西。网页仍然没有加载仅显示纯文本框的日期选择器
我尝试在document.ready内编写datepicker函数,但是它显示的datepicker不是函数。因此,我创建了一个匿名函数来加载日期选择器。仍然找不到日期选择器
func collectionView(_ collectionView: UICollectionView, cellForItemAt indexPath: IndexPath) -> UICollectionViewCell {
switch typeCell {
case categorie:
let cell = collectionView.dequeueReusableCell(withReuseIdentifier: "CategoryCell1", for: indexPath) as! CategoryCell1
// what you want to display
case storie:
let cell = collectionView.dequeueReusableCell(withReuseIdentifier: "StoresCell", for: indexPath) as! CategoryCell1
// what you want to display
}
import * as $ from 'jquery'
import 'jquery-ui'
ngOnInit()
{
$(document).ready(function() {});
(function()
{
$("#datepicker").datepicker();
})
}
我希望日期选择器应显示在输入字段的最后一个字段中。