关键词小工具

Created: 06 Jun 2018

Author:  Chen Xie

小工具

低功耗mcu,低功耗单片机,高主频mcu,高主频单片机

Code

代码如下

<input type="text" id="adj"/>
<input type="text" id="noun"/>
<input type="button" id="create" value="create"/>
<p id="result"></p> 
$("#create").click(function(){
  $("#result").empty();
  var res=new Array();
  var adjs = $("#adj").val().split(/[,,]/);
  var nouns= $("#noun").val().split(/[,,]/);
  $.each(adjs,function(i,part1) {
    
    $.each(nouns,function(j,part2) {
        $("#result").prepend(part1+part2+",");
      });
    
    });
});
# tools