我想知道是否单击了锚链接。
我动态添加锚链接并使用它们的名称文件设置 id,但我不知道我的 Spreadshett 中“点击”的单元格的数量有多少。
For ex: the id of file "test.pdf" --> test;
在电子表格中:
ex:
ColumA <namefile>: test.pdf
ColumB <linkfile>: https://docs.google.com/document/d/1PiMj.....jramcs
ColumC <cliked>: 1
我预计如果我点击了我的锚点,我的函数可以知道点击了哪个锚点,并且在适当行的列 C 中的数量为“1”。
var html = app.createAnchor(nf, hf).setId(nf);
我正在尝试制作类似的东西:
var html = app.createAnchor(nf, hf).setId(nf).addClickHandler(app.createServerHandler("sumDoc").addCallbackElement(flexTableDoc));
¿ 但是我怎么知道函数 sumDoc 中点击了哪个锚点?