小编bay*_*est的帖子

DataTables 分页样式未设置为引导程序主题

我尝试在我的网站上使用 DataTables。我从这里使用引导程序版本 3.3.6:http : //getbootstrap.com/

我正在使用这里的 DataTables 示例:https : //datatables.net/examples/styling/bootstrap.html

这是我的预期:

预期的

但这就是我得到的:

我得到了什么

这是我的代码:

<head>
	<!-- Bootstrap -->
	<!-- Bootstrap core CSS -->
	<link href="css/bootstrap.css" rel="stylesheet">
	<!-- Bootstrap theme -->
	<link href="css/bootstrap-theme.css" rel="stylesheet">
	<!-- Datatable css -->
	<link href="css/dataTables.bootstrap.min.css" rel="stylesheet">
	<link href="css/jquery.dataTables.min.css" rel="stylesheet">
	<!-- Custom styles for this template -->
	<link href="theme.css" rel="stylesheet">
</head>
<body>
	<!-- some other stuff and html code here -->

	<!-- and, at the end of page, I have: -->
	<script>window.jQuery || document.write('<script src="../../assets/js/vendor/jquery.min.js"><\/script>')</script>
	<script …
Run Code Online (Sandbox Code Playgroud)
Run Code Online (Sandbox Code Playgroud)
Run Code Online (Sandbox Code Playgroud)

javascript css datatable jquery twitter-bootstrap-3

5
推荐指数
1
解决办法
3万
查看次数

如何通过vbscript运行java程序(jar文件)?

我有这个脚本:

Set WshShell = CreateObject("WScript.Shell")
dim a
a = "C:\Program Files (x86)\MyProgram\MyApplication.jar"
WshShell.Run "javaw -jar " & a
Run Code Online (Sandbox Code Playgroud)

但是当我执行时,我收到错误消息:"错误:无法访问jarfile:C:\ Program"

问题是......我的程序路径包含空格.如何解决这个问题?

java windows vbscript

0
推荐指数
1
解决办法
9934
查看次数