我使用QTTabBar已经有一段时间了,并且正在使用.js脚本。脚本使用Windows主机运行,但我发现自己必须在.js文件中指定硬编码目录,而不是相对路径。这并不理想。
在.js文件中,是否可以获得.js文件的包含文件夹(不管它最初从哪个目录运行)?我只需要避免以某种方式指定绝对路径。例如,我的.js文件的一部分可能如下所示:
var qs = new ActiveXObject( "QTTabBarLib.Scripting" );
var fso = new ActiveXObject("Scripting.FileSystemObject");
var
我有以下代码通过HTML5文件应用程序接口读取文件。我已经通过input=file元素上传了文件。以下是代码块。
<input type="file" id="files" name="file" />
<button id="readFile">Read File</button>
<output id="content"></output>
<script>
function readFile()
{
/* Get the r
在我的配置文件中我有$config['jquery'] = 'js/jquery.js';
我的jquery.js文件驻留在应用程序文件夹之外,并且位于js文件夹中。
在我的控制器里
public $jquery
public function __construct(){
$this->jquery = $this->config->item('jquery');
}
public function index(){
$data['jquery'] = $this->jquery;
$th