aboutsummaryrefslogtreecommitdiff
path: root/files/zh-cn/learn/forms
diff options
context:
space:
mode:
authorPeter Bengtsson <mail@peterbe.com>2021-07-31 09:33:29 -0400
committerIrvin <irvinfly@gmail.com>2021-08-01 13:37:23 +0800
commitb9783c06657382caf2267a9a098ffa8e95a7f2ab (patch)
treeebd0cffca6aa6fe12829ff2791f9576898ebde26 /files/zh-cn/learn/forms
parentc57404698a76f159e63c19bc8f42a3d4503d672d (diff)
downloadtranslated-content-b9783c06657382caf2267a9a098ffa8e95a7f2ab.tar.gz
translated-content-b9783c06657382caf2267a9a098ffa8e95a7f2ab.tar.bz2
translated-content-b9783c06657382caf2267a9a098ffa8e95a7f2ab.zip
remove link 'title' attributes that's just the 'href' (zh-cn, part 5)
Diffstat (limited to 'files/zh-cn/learn/forms')
-rw-r--r--files/zh-cn/learn/forms/how_to_build_custom_form_controls/index.html2
1 files changed, 1 insertions, 1 deletions
diff --git a/files/zh-cn/learn/forms/how_to_build_custom_form_controls/index.html b/files/zh-cn/learn/forms/how_to_build_custom_form_controls/index.html
index 106badb508..0aace19c98 100644
--- a/files/zh-cn/learn/forms/how_to_build_custom_form_controls/index.html
+++ b/files/zh-cn/learn/forms/how_to_build_custom_form_controls/index.html
@@ -404,7 +404,7 @@ original_slug: Learn/HTML/Forms/How_to_build_custom_form_widgets
<p>在我们将要构建的代码之中,我们将会使用标准的 DOM API 来完成我们所要做的所有工作。尽管 DOM API 在浏览器中得到了更好支持,但是在旧的浏览器上还是会出现问题。( 特别是非常老的 Internet Explorer)。</p>
-<p>如果你想要避免旧浏览器带来的麻烦,这儿有两种解决方案:使用专门的框架,比如 <a href="http://jquery.com/" rel="external" title="http://jquery.com/">jQuery</a>, <a href="https://github.com/julienw/dollardom" rel="external">$dom</a>, <a href="http://prototypejs.org/" rel="external">prototype</a>, <a href="http://dojotoolkit.org/" rel="external">Dojo</a>, <a href="http://yuilibrary.com/" rel="external">YUI</a>, 或者类似的框架,或者通过填充你想使用的缺失的特性 (这可以通过条件加载轻松完成——例如使用 <a href="http://yepnopejs.com/" rel="external">yepnope</a> 这样的库。</p>
+<p>如果你想要避免旧浏览器带来的麻烦,这儿有两种解决方案:使用专门的框架,比如 <a href="http://jquery.com/" rel="external">jQuery</a>, <a href="https://github.com/julienw/dollardom" rel="external">$dom</a>, <a href="http://prototypejs.org/" rel="external">prototype</a>, <a href="http://dojotoolkit.org/" rel="external">Dojo</a>, <a href="http://yuilibrary.com/" rel="external">YUI</a>, 或者类似的框架,或者通过填充你想使用的缺失的特性 (这可以通过条件加载轻松完成——例如使用 <a href="http://yepnopejs.com/" rel="external">yepnope</a> 这样的库。</p>
<p>我们打算使用的特性如下所示(按照风险程度从高到低排列):</p>