我试图在sql语句中的LIKE之后调用Javascript变量elem,以便在那里使用输入文本.然而,我正在使用的方式不适用于我正在使用的Sheetrock库(http://chriszarate.github.io/sheetrock/).
Box_id">
Box_id').value;
$('#switch-hitters').sheetrock({
url: mySpreadsheet,query: "select A,B,C,D,E where A LIKE %"+elem+"%"
});
最佳答案
既然你在这里更新了你的问题就更新了答案.检查工作jsfiddle:https://jsfiddle.net/r0sk7vtf/
原文链接:https://www.f2er.com/html/425481.html>您需要处理提交按钮单击事件,然后调用服务
>虽然电子表格api理解为没有引号,但它不能通过sheetrock.js工作,所以你需要在查询中使用类似’9999%’的A
片段:
var mySpreadsheet = 'https://docs.google.com/spreadsheets/d/1_1elTo5zH1ew6KPYwoWtixX9hzFc8oxdRy5A0LWFkwg/edit#gid=0';
var button = $('#btn'),elem = $('#textBox_id')
button.on('click',function(e){
var v = elem.val();
$('#switch-hitters').sheetrock({
url: mySpreadsheet,E where A like '" + v + "%'"
});
})