意外的EOF jQuery Mobile

时间:2016-01-10 06:12:01

标签: javascript jquery

我需要有关EOF问题的帮助

  <script type="text/javascript">
    $('body').on('click',".deleteMe", function(){
    $(this).parent().remove();
    $('#listView1').listview('refresh');
});
        $('#clickmenow').click(function(){
            var textget = $('#contributionAmount').val();
            var newPage = $('<html><head></head> <script> </script> <body><div data-role="page" id="page1"> <div data-role="main" class="content" /> <h1> Click To Enter Date </h1> <input type="text" id="dateget" /> <a href="#home" data-role="button">BACK</a>  </body> </html>')    
            //"<html> <head> </head> <body> <div data-role = 'page' id='page1'><div data-role = 'main' class = 'ui-content'/> <a href='#home' data-role='button'>BACK</a> </body>"
//'<html><head></head><body><div data-role="page" id="page1"> <div data-role="main" class="ui-content" /> <input type="text" /> <a href="#home" data-role="button">BACK</a> </body></html>'
            if(textget){
                newPage.appendTo($.mobile.pageContainer);
                $.mobile.changePage( newPage );
                var i = 0;
                $('#listView1').append('<li id="l1"><a href="#page'+(++i)+'"  > '+ textget +' </a><a id="1" class="deleteMe"></a></li>').listview('refresh');
                $('#contributionAmount').val('');
                window.alert(textget);
            } else{
                alert("empty");
            }            
        });        
      </script> 

var newPage = $('<html><head></head> <script> </script> <body><div data-role="page" id="page1"> <div data-role="main" class="content" /> <h1> Click To Enter Date </h1> <input type="text" id="dateget" /> <a href="#home" data-role="button">BACK</a>  </body> </html>')  

// the problem when i add <script></script>

请帮助:(

我不知道该怎么办?

为什么:(为什么:(?

我想提出一个接送时间

0 个答案:

没有答案