Disallow Script URLs (no-script-url)

禁用 Script URL (no-script-url)

Using javascript: URLs is considered by some as a form of eval. Code passed in javascript: URLs has to be parsed and evaluated by the browser in the same way that eval is processed.

在链接地址中使用 javascript: 被有些人认为是 eval 的一种形式。在 javascript: 链接中的代码必须由浏览器解析和赋值,其处理方式与 eval 一样。

Rule Details

Examples of incorrect code for this rule:

错误 代码示例:

/*eslint no-script-url: "error"*/

location.href = "javascript:void(0)";

Compatibility

Further Reading

Version

This rule was introduced in ESLint 0.0.9.

该规则在 ESLint 0.0.9 中被引入。

Resources