简体   繁体   中英

How to get form control values when using jQuery drag and drop

I am creating an asp.net drag and drop application using jQuery. I have got the drag and drop working and communicating with a Windows Service. Now, what I need is to be able to pass the text value of what I am dragging as a parameter to the web service. Any ideas where I am going wrong?

I have a repeater control with a literal in it called lbName. The ClientIDMode = Inherit with a visibility of false. I need to get the text value of lbName and pass it to the Javascript shown below to be passed on to the web service.

Thanks

<li class="col-xs-5 ingredient draggable"><span>
                                                <asp:Literal ID="lbName" Text='<%# Eval("Name") %>' runat="server"></asp:Literal></span></li>

<script>
    $(function () {
        var webMethod = "http://localhost:53809/WebServices/DragDrop.asmx/GetFoodByName";

        $(".draggable").draggable({ helper: "clone" });

        $(".drag-div").droppable({
            accept: ".draggable",
            tolerance: "pointer",
            activeClass: "drop-here",
            hoverClass: "drop-here-hover",

            drop: function (event, ui) {

                $.ajax({
                        type: "POST",
                        url: webMethod,
                        data: "{'FoodName': '" + $(".draggable").find("lbFoodID").val() + "'}",
                        contentType: "application/json; charset=utf-8",
                        dataType: "json",
                        success: onSuccess,
                        error: onError
                });
            }
        });

        function onSuccess(data, status) {
            $("#lbFoodNamePopup").html(data.d);

            $.fancybox({
                href: '#add-quantity'
            });
        }
        function onError(request, data, status) {
            alert(request.status);
        }

    });
</script>

see this fiddle

use in drop function :

 var text = $(ui.draggable).find("#lblID").text();
 alert(text);

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM