Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
OpenHarmony
Docs
提交
c735db67
D
Docs
项目概览
OpenHarmony
/
Docs
1 年多 前同步成功
通知
159
Star
292
Fork
28
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
0
列表
看板
标记
里程碑
合并请求
0
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
D
Docs
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
0
Issue
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
未验证
提交
c735db67
编写于
8月 22, 2023
作者:
O
openharmony_ci
提交者:
Gitee
8月 22, 2023
浏览文件
操作
浏览文件
下载
差异文件
!22618 无障碍框架修改doc文档
Merge pull request !22618 from jinqi6/master
上级
7d2cab00
8ae82f13
变更
1
隐藏空白更改
内联
并排
Showing
1 changed file
with
0 addition
and
15 deletion
+0
-15
zh-cn/application-dev/reference/apis/js-apis-inner-application-accessibilityExtensionContext.md
...s-apis-inner-application-accessibilityExtensionContext.md
+0
-15
未找到文件。
zh-cn/application-dev/reference/apis/js-apis-inner-application-accessibilityExtensionContext.md
浏览文件 @
c735db67
...
...
@@ -635,7 +635,6 @@ attributeNames\<T extends keyof ElementAttributeValues>(): Promise\<Array\<T>>;
**示例:**
```
ts
let
rootElement
;
let
attributeNames
;
rootElement
.
attributeNames
().
then
((
data
)
=>
{
console
.
log
(
'
get attribute names success
'
);
...
...
@@ -661,7 +660,6 @@ attributeNames\<T extends keyof ElementAttributeValues>(callback: AsyncCallback\
**示例:**
```
ts
let
rootElement
;
let
attributeNames
;
rootElement
.
attributeNames
((
err
,
data
)
=>
{
if
(
err
)
{
...
...
@@ -705,7 +703,6 @@ attributeValue\<T extends keyof ElementAttributeValues>(attributeName: T): Promi
```
ts
let
attributeName
=
'
name
'
;
let
attributeValue
;
let
rootElement
;
try
{
rootElement
.
attributeValue
(
attributeName
).
then
((
data
)
=>
{
console
.
log
(
'
get attribute value by name success
'
);
...
...
@@ -744,7 +741,6 @@ attributeValue\<T extends keyof ElementAttributeValues>(attributeName: T,
**示例:**
```
ts
let
rootElement
;
let
attributeValue
;
let
attributeName
=
'
name
'
;
try
{
...
...
@@ -777,7 +773,6 @@ actionNames(): Promise\<Array\<string>>;
**示例:**
```
ts
let
rootElement
;
let
actionNames
;
rootElement
.
actionNames
().
then
((
data
)
=>
{
console
.
log
(
'
get action names success
'
);
...
...
@@ -803,7 +798,6 @@ actionNames(callback: AsyncCallback\<Array\<string>>): void;
**示例:**
```
ts
let
rootElement
;
let
actionNames
;
rootElement
.
actionNames
((
err
,
data
)
=>
{
if
(
err
)
{
...
...
@@ -846,7 +840,6 @@ performAction(actionName: string, parameters?: object): Promise\<void>;
**示例:**
```
ts
let
rootElement
;
try
{
rootElement
.
performAction
(
'
action
'
).
then
((
data
)
=>
{
console
.
info
(
'
perform action success
'
);
...
...
@@ -883,7 +876,6 @@ performAction(actionName: string, callback: AsyncCallback\<void>): void;
**示例:**
```
ts
let
rootElement
;
try
{
rootElement
.
performAction
(
'
action
'
,
(
err
,
data
)
=>
{
if
(
err
)
{
...
...
@@ -923,7 +915,6 @@ performAction(actionName: string, parameters: object, callback: AsyncCallback\<v
**示例:**
```
ts
let
rootElement
;
let
actionName
=
'
action
'
;
let
parameters
=
{
'
setText
'
:
'
test text
'
...
...
@@ -964,7 +955,6 @@ findElement(type: 'content', condition: string): Promise\<Array\<AccessibilityEl
**示例:**
```
ts
let
rootElement
;
let
type
=
'
content
'
;
let
condition
=
'
keyword
'
;
let
elements
;
...
...
@@ -998,7 +988,6 @@ findElement(type: 'content', condition: string, callback: AsyncCallback\<Array\<
**示例:**
```
ts
let
rootElement
;
let
type
=
'
content
'
;
let
condition
=
'
keyword
'
;
let
elements
;
...
...
@@ -1039,7 +1028,6 @@ findElement(type: 'focusType', condition: FocusType): Promise\<AccessibilityElem
**示例:**
```
ts
let
rootElement
;
let
type
=
'
focusType
'
;
let
condition
=
'
normal
'
;
let
element
;
...
...
@@ -1073,7 +1061,6 @@ findElement(type: 'focusType', condition: FocusType, callback: AsyncCallback\<Ac
**示例:**
```
ts
let
rootElement
;
let
type
=
'
focusType
'
;
let
condition
=
'
normal
'
;
let
element
;
...
...
@@ -1114,7 +1101,6 @@ findElement(type: 'focusDirection', condition: FocusDirection): Promise\<Accessi
**示例:**
```
ts
let
rootElement
;
let
type
=
'
focusDirection
'
;
let
condition
=
'
up
'
;
let
element
;
...
...
@@ -1148,7 +1134,6 @@ findElement(type: 'focusDirection', condition: FocusDirection, callback: AsyncCa
**示例:**
```
ts
let
rootElement
;
let
type
=
'
focusDirection
'
;
let
condition
=
'
up
'
;
let
elements
;
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录