-1

このフォームで理由を教えてください:

<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 文字を超える場合にのみ値を返しますか?

4

1 に答える 1

0

解決しました。別のスクリプトに問題がありました。申し訳ありません。

于 2012-05-10T10:05:44.360 に答える