Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
3.6k views
in Technique[技术] by (71.8m points)

ajax - JQuery appended data is not available at POST request

I am trying to append data from a list of data from database to a text-area. Data is being appended but it is not available at post request.

Can you please guide me why I am not getting data at my controller?

user interface


 <textarea id="summernote" name="description" rows="25">
         <ul>
            <li id="description"></li>
         </ul>
  </textarea>


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

        $('.task_id').on("click", function(e) {          
          e.preventDefault();   
            debugger;           
            var task = $(this).text();            
            var task_id = $(this).attr("id"); 
            $('#'+ task_id).css("cursor", "not-allowed");
            $('#'+ task_id).css("color", "grey");            
            $('#'+ task_id).off('click');
            
            var task = $.trim(task);
            var task_li = "<li>"+task+"</li>";
            var description = $('#description').append(task_li);
        });
    });
    </script>

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)
等待大神解答

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...