日历样式在React js中不起作用

时间:2019-02-27 06:13:27

标签: jquery reactjs bootstrap-4

<div data-provide="calendar"></div>

当我使用此Html属性时,正在加载日历,但是此日历没有任何样式。我不明白为什么这些样式不适用于此压延机。

我正在通过“ bootstrap-year-calender”使用此日历。

我还包括了“ bootstrap-year-calender”提供的css和js文件。

<link rel="stylesheet" type="text/css" href="/css2/bootstrap-year-calendar.css" />
<link rel="stylesheet" type="text/css" href="/css2/bootstrap-year-calendar.min.css" />
<script type="text/javascript" src="/js/bootstrap-year-calendar.min.js"></script>

<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css" integrity="sha384-Gn5384xqQ1aoWXA+058RXPxPg6fy4IWvTNh0E263XmFcJlSAwiGgFAW/dAiS6JXm" crossorigin="anonymous">
<script type="text/javascript" src="https://maps.googleapis.com/maps/api/js?key=AIzaSyDiSo4yN97tS6CIfMqJCXItYCwgzVkIJVc&libraries=places"></script>
<link rel="manifest" href="%PUBLIC_URL%/manifest.json" />

<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.12.9/umd/popper.min.js" integrity="sha384-ApNbgh9B+Y1QKtv3Rn7W3mgPxhU9K/ScQsAP7hUibX39j7fakFPskvXusvfa0b4Q" crossorigin="anonymous"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/js/bootstrap.min.js" integrity="sha384-JZR6Spejh4U02d8jOt6vLEHfe/JQGiRRSQQxSfFWpi1MquVdAyjUar5+76PVCmYl" crossorigin="anonymous"></script>

请验证并为我提供解决方案。

1 个答案:

答案 0 :(得分:0)

更新的答案

看到您的github代码后,我想我已经找到了您的问题。实际上,您实际上是在使用Bootstrap的CDN来包含Bootstrap cssjs代码,但是您在使用Bootstrap v4时是“ the plugin requires Bootstrap v3.0.0 or later。这有点令人误解,因为从技术上讲v4比“ v3.0.0还要晚”

仍然,底行是您应该使用Bootstrap v3

为此,您需要在静态文件中更改CDN引用。

请改用以下内容(取自Bootstrap's v3.4.1 Download Page

<!-- Latest compiled and minified CSS -->
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/3.4.1/css/bootstrap.min.css" integrity="sha384-HSMxcRTRxnN+Bdg0JdbxYKrThecOKuH5zCYotlSAcp1+c8xmyTe9GYg1l9a69psu" crossorigin="anonymous">

<!-- Optional theme -->
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/3.4.1/css/bootstrap-theme.min.css" integrity="sha384-6pzBo3FDv/PJ8r2KRkGHifhEocL+1X2rVCTTkUfGk7/0pbek5mMa1upzvWbrUbOZ" crossorigin="anonymous">

<!-- Latest compiled and minified JavaScript -->
<script src="https://stackpath.bootstrapcdn.com/bootstrap/3.4.1/js/bootstrap.min.js" integrity="sha384-aJ21OjlMXNL5UyIl/XNwTMqvzeRMZH2w8c5cRVpzpU8Y5bApTppSuUkhZXN0VxHd" crossorigin="anonymous"></script>

我对您提供的存储库执行了此操作,并且该存储库在本地计算机上运行,​​显示如下:

enter image description here