# 超链接点击
**注意事项**：需要设置extensions.content.hyperlinkHandler为outer [功能配置](https://open.feishu.cn/document/uYjL24iN/uYDO3YjL2gzN24iN3cjN/feature-config)

监听用户点击正文中的超链接，并且拦截超链接的跳转打开。
## 示例
```js
// npm
myComponent.register(DocComponentEvent.HYPERLINK_CLICK, function(url) {
  // ...
});

// sdk
myComponent.register('HYPERLINK_CLICK', function(url) {
  // ...
});
```

## 返回
|属性|	类型|	说明|
| ---|----- | ------- | 
|url|String |超链接地址

