提交 d4af213e 编写于 作者: Y yu-shihao4

【web】web组件支持url获取

Signed-off-by: Nyu-shihao4 <yushihao4@huawei.com>
上级 de017331
......@@ -3102,6 +3102,38 @@ postMessage(options: { message: WebMessageEvent, uri: string}): void
})
```
### getUrl<sup>9+</sup>
getUrl(): string
获取当前页面的url地址。
**返回值:**
| 类型 | 说明 |
| ------------------------------- | ------------- |
| string | 当前页面的url地址。 |
**示例:**
```ts
// xxx.ets
@Entry
@Component
struct WebComponent {
controller: WebController = new WebController();
build() {
Column() {
Button('getUrl')
.onClick(() => {
console.log("url: " + this.controller.getUrl());
})
Web({ src: 'www.example.com', controller: this.controller })
}
}
}
```
## HitTestValue<sup>9+</sup>
提供点击区域的元素信息。示例代码参考[getHitTestValue](#gethittestvalue9)
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册