Textarea仅在超过15个字符时返回.value()

时间:2012-04-21 16:54:15

标签: jquery html textarea

你能告诉我为什么用这种形式:

<div id="comment-form">
<h3>Commenta questo racconto:</h3>
<form method="post" id="story-comment-form" action="#">
    <textarea name="comment" id="story-comment-text"></textarea>
    <input type="submit" name="vote" class="submit" id="story-comment-submit" title="Invia commento" value="Invia commento"/>
<form>
</div>

和这个jquery代码:

$("#story-comment-submit").click(function(e)
{
    e.preventDefault();
    var a = $("#story-comment-text").val();
    alert(a);
});

var a仅在textarea格式中有超过15个字符时才返回值吗?

1 个答案:

答案 0 :(得分:0)

解决了它,我有另一个脚本的问题。对不起伙计们。