Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[zh-cn]: create the translation of ErrorEvent colno property #25550

Merged
merged 3 commits into from
Feb 8, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
30 changes: 30 additions & 0 deletions files/zh-cn/web/api/errorevent/colno/index.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
---
title: ErrorEvent:colno 属性
slug: Web/API/ErrorEvent/colno
l10n:
sourceCommit: 5021b506f3879b6f3131b763c4bc76b6d39baafa
---

{{APIRef("HTML DOM")}}{{AvailableInWorkers}}

{{domxref("ErrorEvent")}} 接口的 **`colno`** 只读属性返回一个整数,表示发生的错误在脚本文件中所位于的列号。

## 值

整数。

## 示例

```js
window.addEventListener("error", (ev) => {
console.log("错误发生在第 " + ev.colno + " 列");
});
```

## 规范

{{Specifications}}

## 浏览器兼容性

{{Compat}}