javascript jQueryダンプ

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了javascript jQueryダンプ相关的知识,希望对你有一定的参考价值。

function jquery_dump($obj) {
  var dumphtml = [];
  for(var i = 0; i < $obj.length; i++) {
    dumphtml.push('[' + i + '] '
    + '<' + $obj[i].nodeName.toLowerCase());
    for(var j = 0; j < $obj[i].attributes.length; j++) {
      dumphtml.push(' ' + $obj[i].attributes[j].nodeName + '="'
      + $obj[i].attributes[j].nodeValue + '"');
    }
      dumphtml.push('>' + $obj[i].innerHTML);
      dumphtml.push('<\/' + $obj[i].nodeName.toLowerCase() + '>');
      dumphtml.push("\n");
    }
    alert(dumphtml.join(''));
}

以上是关于javascript jQueryダンプ的主要内容,如果未能解决你的问题,请参考以下文章

markdown ダンプファイルからのインポート

text cygwin的でコアダンプを出力させる设定

html jQuery的のソート处理サンプル①

html シンプルなタブ切り替え(jQuery的)

css jQuery的を利用したアコーディオンのサンプル

css jQuery的を利用したアコーディオンのサンプル