设置wbTarget1 = xl.Workbooks.Open(" C:\ Users \ Owner \ Dropbox \ Trk_Insp_1204_10_08_2016.xlsx")
其他机器上的位置不同,即所有者不同。我可以使用current.path吗?我可以使用外卡还是
〜\ Trk_Insp_1204_10_08_2016.xlsx
我看到一个引用提到如果excel文件位于访问数据库所在的当前目录中,则可以截断路径。
丹尼斯
答案 0 :(得分:0)
请做一个简单的测试子测试:
$(document).ready(function() {
$.ajax({
dataType: "json",
url: "..." ,
}).done(function ( data ) {
console.log(data);
//these are the first question and answers. And this works!!
$('#titulo').html(data.question);
$('#0').html(data.children[0].label);
$('#1').html(data.children[1].label);
//when the user clicks on one of the options
$('.all_options').bind('click', function () {
var op = event.target.id;
console.log(op);
if(op == '0'){
}else{
}
});
});
});