我尝试在我的网站上使用 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) 我有这个脚本:
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"
问题是......我的程序路径包含空格.如何解决这个问题?