-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 回答