好的jQuery/Javascript不能有很多注释吗?

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了好的jQuery/Javascript不能有很多注释吗?相关的知识,希望对你有一定的参考价值。

I can't help thinking that good use of jQuery & javascript must use extensive comments
  1. var grammar = {
  2. BracedText : new RegExp('{.*}')
  3. };
  4.  
  5. $(function() {
  6. $('td.kanji').each(function() {
  7.  
  8. // get text is in curly-braces, abort if nothing
  9. var sentence = $(this).text();
  10. var $bracedText = sentence.match(grammar.BracedText);
  11. if ($bracedText === null) return;
  12. var bracedText = $bracedText[0].substr(1,$bracedText[0].length-2);
  13.  
  14. // replace curly-braced text with a span, which serves as an insertion point
  15. sentence = sentence.replace(grammar.BracedText,'<span></span>');
  16.  
  17. // find first link, clone it
  18. var link = $(this).closest('tr').find('a:first').clone();
  19.  
  20. // change the link text to what was in the curly braces
  21. link.text(bracedText);
  22.  
  23. //insert the new html
  24. $(this).html(sentence).find('span').append(link);
  25. });
  26. });

以上是关于好的jQuery/Javascript不能有很多注释吗?的主要内容,如果未能解决你的问题,请参考以下文章

如果为空 jquery/javascript,则添加/附加查询字符串

UiTableView cellForRowAt 没有返回好的值并且不能滚动

JavaScript(14)jQuery(JavaScript 库)

使用 jQuery 插件自动格式化结构化数据(电话、日期)(或无法使用原生 JavaScript)

如何通过jQuery / Javascript获取更新的表单输入值?

jQuery JavaScript Datatables 列压缩/挤压在一起