jQuery的。克隆的元素无法识别

时间:2014-10-26 02:55:14

标签: javascript jquery html css clone

我通过jQuery .clone(true)克隆一些div并插入克隆元素作为最后一个,但是当我尝试使用selector时:对于这个元素,它不是工作。控制台不显示任何错误。 以下是克隆元素的方法:

            $("div.addnewitem").on('click', function () {
                var $d = $("#example").clone(true);
                $($d).removeAttr("style");
                $($d).insertAfter("div.item:last");
                $('html, body').animate({
                    scrollTop: $("div.item:last").offset().top
                }, 2000);
            });

这是要克隆的元素:

<div id="example" style="display: none;" class="item">
        <div class="deleteitem">
            <img alt="" src="../img/deleteitem.png">
        </div>
        <div class="itemphoto">
            <img alt="" src="../img/woolrich.png">
        </div>
        <div class="bigshadow">
            <img alt="" src="../img/bigshadow.png">
        </div>
        <div class="about">
            <input type="text" class="link" placeholder="Ссылка на изображение" name="item_image" />
            <input type="text" class="name" placeholder="Вещь и бренд..." name="item_name">
            <textarea class="review" placeholder="Короткое описание (около 120 символов)..." name="item_desc"></textarea>
            <input type="text" class="link" placeholder="Ссылка на вещь..." name="item_url">
            <input type="text" class="pricestylist" placeholder="Цена (xxx руб/$)" name="item_price">
        </div>
    </div>

以下是我想要操作克隆元素的方法:

$("input[name='item_url']:last").change(function (event) {
                if ($("#setname").val() != "") {
                    if ($("input[name='item_url']:last").val() != null) {
                        $.ajax({
                            url: '../ParseShop.asmx/ParseFott',
                            cache: false,
                            type: 'POST',
                            dataType: 'json',
                            contentType: 'application/json; charset=utf-8',
                            data: "{'urlstring':'" + $("input[name='item_url']:last").val() + "'}",
                            success: function (msg) {
                                $("textarea[name='item_desc']:last").val($.trim(msg.d.ItemDescription));
                                $("input[name='item_name']:last").val($.trim(msg.d.ItemName));
                                $("input[name='item_price']:last").val($.trim(msg.d.ItemPrice));
                                $("input[name='item_image']:last").val($.trim(msg.d.ItemImageUrl));
                                $("img[id='itemimg']:last").attr('src', $.trim(msg.d.ItemImageUrl));
                            },
                            error: function (xhr, status, error) {
                                var err = eval("(" + xhr.responseText + ")");
                                alert(err.Message);
                            }
                        });
                    }
                    else {
                        alert("Вы забыли ввести ссылку на товар!");
                        $("input[name='item_url']:last").focus();
                        event.stopPropagation();
                    }
                }
                else {
                    alert("Вы забыли название комплекта!");
                    $("#setname").focus();
                    event.stopPropagation();
                }
            });

P.S。克隆功能工作正常 - 我可以克隆和删除克隆元素,但为什么:最后不工作我不知道。

1 个答案:

答案 0 :(得分:0)

嗯,这是适合我的解决方案。

$("div.item").on('change', 'input[name="item_url"]', function (event) {
                if ($("#setname").val() != "") {
                    if ($(this).val() != null) {
                        $.ajax({
                            url: '../ParseShop.asmx/ParseFott',
                            cache: false,
                            type: 'POST',
                            dataType: 'json',
                            contentType: 'application/json; charset=utf-8',
                            data: "{'urlstring':'" + $("input[name='item_url']:last").val() + "'}",
                            success: function (msg) {
                                $("div.item:last textarea[name='item_desc']").val($.trim(msg.d.ItemDescription));
                                $("div.item:last input[name='item_name']").val($.trim(msg.d.ItemName));
                                $("div.item:last input[name='item_price']").val($.trim(msg.d.ItemPrice));
                                $("div.item:last input[name='item_image']").val($.trim(msg.d.ItemImageUrl));
                                $("div.item:last img[id='itemimg']").attr('src', $.trim(msg.d.ItemImageUrl));
                            },
                            error: function (xhr, status, error) {
                                var err = eval("(" + xhr.responseText + ")");
                                alert(err.Message);
                            }
                        });
                    }
                    else {
                        alert("Вы забыли ввести ссылку на товар!");
                        $("input[name='item_url']:last").focus();
                        event.preventDefault();
                    }
                }
                else {
                    alert("Вы забыли название комплекта!");
                    $("#setname").focus();
                    event.preventDefault();
                }
            });

P.S。基于Brian回答。 Brian,您可以添加评论作为答案。