1

私の意図は、春のmvcで非表示のカウント値フォームビューをコントローラーに送信することです。すべてが機能していますが、iamはコントローラーでカウントを取得していません。

<HTML>
<HEAD>

<script type="text/javascript" src="resources/js/jquery-1.6.2.min.js"></script>
<script type="text/javascript">
$(document).ready(function() {
    var i = 1;
    //var c = 0;
    $("#AddSection").click(function() {
        i++;
        $("<div />").append($("<input />", {
            type: "text",
            name: "Section" + i
        })).appendTo("#someContainer");

        //c = i;
        document.getElementsByName("Count").Value = i;
        alert(i);
    });

    $("input").live("click", function() {
        $("span").text("Section: " + this.name);

    });
});​
</SCRIPT>
</HEAD>
<BODY>
    <form method="get" action="addProfile">
        ProfileName<input type="text" name="pname"><br />
         SectionName<input type="text" name="Section1">
          <input type="button" id="AddSection" value="AddSection">
        <div id="someContainer"></div>
    <input type="hidden" id="hiddenSection" name="Count" />
        <span></span> <input type="submit" value="save"> 
    </form>
</BODY>
</HTML>
4

1 に答える 1

1

タイプミスがあります:

document.getElementsByName("Count").Value = i;
//                                  ^----Typo!

value小文字です:

document.getElementsByName("Count")[0].value = i;   
//                                     ^----Fixed!  
//                                 ^-------- return HTML Collection, take first.

より良い使用法id

document.getElementById("hiddenSection").value = i;     

jQueryを使用しているため、次のいずれかを使用できます。

$("#hiddenSection").val(i);
$('input[name="Count"]').val(i);
于 2012-06-21T08:06:06.447 に答える