showAlert搜索输入和显示

时间:2017-06-22 07:35:03

标签: javascript

在这里,有人在这帮助我使用该代码:

function showAlert(){ 
        var dropzone = $('#dropzoneorg').html();
                       $('#dialog span').html(dropzone); 
                       $( "#dialog" ).dialog({modal: true}); 
                    } 

但现在我想在ID(“#dropzoneorg”...)中搜索输入,而不是在Dialog中显示。 也许是这样,但首先他必须搜索内部是否有东西:

function showAlert(){ 
        var dropzone = $('#dropzone,#dropzone1,#dropzone2,#dropzone3......').html();
                       $('#dialog span').html(dropzone); 
                       $( "#dialog" ).dialog({modal: true}); 
                    } 

此处要测试的代码:https://jsfiddle.net/michiffm/e5t1tsaa/4/

我希望有人可以帮助我:) LG Michi

1 个答案:

答案 0 :(得分:0)

尝试这个

在js函数中编写此js代码并尝试

function showAlert(){ 
    var dropzone="";
    $("td").each(function() {
        dropzone = dropzone + $(this).html()+" "+"<br>";   
        $('#dialog span').html(dropzone);        
      });
}

并在您的代码中包含letest .js库文件 链接:[1]:https://jquery.com/download/