我怎样才能制作一个函数,使我的行“仅每秒输出”将在每秒输出之后显示?
$.get(dataurl + '?service=plug1&device1=' + device1 + '&device2=' + device2 + '', function(d){
var myText = ''
$(d).find('plug').each(function(){
myText += 'every output'
myText += 'only every second output'
});
)