我有这个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/,它工作得很好。 但是,在我的页面上..它是 不 .. !!这让我发疯,我已经尝试了所有我看到的东西(谷歌搜索,其他问题等)。 拜托,有些人对此有所了解.. !! :(