jQuery和动态生成的表单

时间:2009-06-19 19:29:43

标签: jquery forms dynamic field

我正在动态创建表单字段。


如果我使用

<script>
$().ready(function() {

    $("input[name=salesPrice1]").blur(function() {

        var nameID = $("input[name=salesPrice1]").val();

        alert(nameID);

        //var newName = $("input#newName").val();

        $.ajax({
            type: "POST",
            url: "cashPrice.cfm",
            data: "salePrice=" + $("input[name=salesPrice1]").val(),
            cache: false,
            success: function(data) {
                $("#cashPrice1").html(data);
            }
        });
    });
});
</script>

部分会有效。现在,我必须动态获取formField的ID / Name。我该怎么做?

3 个答案:

答案 0 :(得分:3)

试试这个?

$("input[name^=salesPrice]").each(function(){
    var input = $(this); 
    var name = input.attr('name');
    var num = /\d+$/.exec(name)[0];

    $(this).blur(function() {

        var nameID = input.val();

        alert(nameID);

        //var newName = $("input#newName").val();

        $.ajax({
        type: "POST",
        url: "cashPrice.cfm",
        data: "salePrice=" + nameID,
        cache: false,
        success: function(data) {
            $("#cashPrice"+num).html(data);
        }
        });
    });
});

答案 1 :(得分:1)

你的问题充其量是模糊的。但这有点像你想要的那样吗?:

$("input").blur(function ()
{
    var that = $(this);

    var id = that.attr("id");
    var name = that.attr("name");
});



更新

您可以匹配值的元素:

$("input[id^='hello']")

将匹配:

<input type="text" id="helloworld" />
<input type="text" id="helloearth" />

但不是:

<input type="text" id="hiworld" />

请参阅selector documentation

注意:这些选择器很慢,我只会使用'em作为最后的手段。为了加快性能,您可以对DOM节点的子集进行查询:

$("complex selector goes here", $("container node in which to query"))

答案 2 :(得分:0)

这也有效:

<html>
<script type="text/javascript">
    $().ready(function() {
        alert('loaded');
        $('.salesPriceInput').blur(function ()
        {    
            alert($(this).attr("id"));
            var myID = $(this).attr("id").substr(10,1); 
            alert(myID);
            $.ajax({
                type: "get",
                url: "cashPrice.cfm",
                data: "salePrice=" + $('#salesPrice'+myID).val(),
                cache: false,
                success: function(data){
                   $('#cashPrice'+myID).html(data);
                }
            })
         }); 
    });
</script>


<form>
    <cfoutput>
        <cfloop from="1" to="3" index="i">
            <input type="text" name="salesPrice#i#" id="salesPrice#i#" class="salesPriceInput" value="" />
            <div id="cashPrice#i#"></div>
            <hr />
        </cfloop>
    </cfoutput>
</form>