继续获得NaN作为jQuery AJAX计算值的结果

时间:2013-01-16 15:00:41

标签: jquery html ajax

我有这个HTML:

  <div id="URLs" style="display:block">
  <div>Insert New URL:
    <br/>
    <input type="text" id="NEW" value="" />
    <br/>Inserted URLs:
    <br/>
    <textarea id="direct_URLs" rows="0"></textarea>
  </div>
  </div>
  <input id="run" type="submit" value="Insert" />

而且,我有这个jQuery:

  $("#run").click(function () {
  if ($("#NEW").val() !== "") {
    $("#direct_URLs").append(($("#direct_URLs").val() == '' ? '' : "\n") + $("#NEW").val());
    $("#direct_URLs").attr('rows', function (i, val) {
      var cnt = parseInt(val, 10) || 0;
      return isNaN(cnt) ? 1 : cnt + 1;
    });
  }
  });

我一直在NaN上获得rows=NaN

我已经尝试了并且确实设置了这里提到的代码:http://jsfiddle.net/s3GDr/1/,它工作得很好。 但是,在我的页面上..它是 .. !!这让我发疯,我已经尝试了所有我看到的东西(谷歌搜索,其他问题等)。 拜托,有些人对此有所了解.. !! :(

0 个答案:

没有答案