Datepicker上一个和下一个按钮图像问题

Mic*_*tel 5 css datepicker

我正在使用简单的datepicker,但问题是上一个和下一个按钮图像没有显示.

https://jqueryui.com/datepicker/

如果链接像下面那样工作正常.

<link rel="stylesheet" href="//code.jquery.com/ui/1.11.4/themes/smoothness/jquery-ui.css">
Run Code Online (Sandbox Code Playgroud)

但是,一旦我正在处理jquery-ui.css到我的本地图像没有显示,就像吼叫一样.

<link rel="stylesheet" href="css/datatable/jquery-ui.css" />
Run Code Online (Sandbox Code Playgroud)

在浏览器控制台中,我收到了如下的错误.

"NetworkError: 404 Not Found - http://localhost:8080/TestProject/css/datatable/images/ui-bg_flat_75_ffffff_40x100.png"
"NetworkError: 404 Not Found - http://localhost:8080/TestProject/css/datatable/images/ui-bg_highlight-soft_75_cccccc_1x100.png"
"NetworkError: 404 Not Found - http://localhost:8080/TestProject/css/datatable/images/ui-icons_222222_256x240.png"
"NetworkError: 404 Not Found - http://localhost:8080/TestProject/css/datatable/images/ui-bg_glass_75_dadada_1x400.png"
"NetworkError: 404 Not Found - http://localhost:8080/TestProject/css/datatable/images/ui-icons_454545_256x240.png"
Run Code Online (Sandbox Code Playgroud)

错误很简单,没有找到这些图像.但我不知道如何解决这个问题,同时保持jquery-ui.css在本地.

提前致谢.

Mat*_*ala 1

本地系统中创建文件夹(图像)

TestProject/css/datatable/images/
Run Code Online (Sandbox Code Playgroud)

从以下网址下载(或)savaAs到上述同名路径并检查:

http://code.jquery.com/ui/1.11.4/themes/smoothness/images/ui-bg_flat_75_ffffff_40x100.png
http://code.jquery.com/ui/1.11.4/themes/smoothness/images/ui-bg_highlight-soft_75_cccccc_1x100.png
http://code.jquery.com/ui/1.11.4/themes/smoothness/images/ui-icons_222222_256x240.png
http://code.jquery.com/ui/1.11.4/themes/smoothness/images/ui-bg_glass_75_dadada_1x400.png
http://code.jquery.com/ui/1.11.4/themes/smoothness/images/ui-icons_454545_256x240.png
Run Code Online (Sandbox Code Playgroud)