mirror of
https://gitee.com/tawords/tawords-docs
synced 2025-01-11 20:08:16 +08:00
7 lines
165 B
Markdown
7 lines
165 B
Markdown
|
```javascript
|
||
|
// 在新窗口中打开链接
|
||
|
$('body').on('click', '.markdown-body a', function (e) {
|
||
|
e.preventDefault();
|
||
|
window.open(this.href, '_blank');
|
||
|
});
|
||
|
```
|