J'utilise jquery et j'ai un textarea. Lorsque je soumets par mon bouton, j'alerterai chaque texte séparé par une nouvelle ligne. Comment diviser mon texte lorsqu'il y a une nouvelle ligne?
var ks = $('#keywords').val().split("\n");
(function($){
$(document).ready(function(){
$('#data').submit(function(e){
e.preventDefault();
alert(ks[0]);
$.each(ks, function(k){
alert(k);
});
});
});
})(jQuery);
exemple d'entrée:
Hello
There
Le résultat que je veux est:
alert(Hello); and
alert(There)