如何使用Google应用脚本获取Google文档中光标的索引?

时间:2016-11-20 00:54:44

标签: google-apps-script google-docs

到目前为止我有这个代码:

 var targetDoc = DocumentApp.getActiveDocument();
 var cursor = targetDoc.getCursor().getElement();
 var cursorParent  = cursor.getParent();
 var cursorPoint = cursorParent.getParent().getChildIndex(cursorParent);

但是这会带回游标父母的父母的孩子,这个孩子总是0。 我找不到一种方法来获取光标自己的父级的childIndex。

有谁知道怎么做?

亲切的问候。

1 个答案:

答案 0 :(得分:1)

我完全在想它。我从main函数中分离出我的代码,发现这将带回光标父代的索引号:

var targetDoc = DocumentApp.getActiveDocument();
var cursor = targetDoc.getCursor().getElement();
var cursorParent  = cursor.getParent().getChildIndex(cursor);
Logger.log(cursorParent);