Tengo un problema.
Quiciera cambiar la sentencia eval() por this[], Pero cuando lo hago el código no me varga las variables. Lo siguiente es el código con eval:
Código PHP:
if (success) {
var mytotal=this.total;
for (i=0; i<=mytotal-1; i++) {
pic_arr.push(eval("this.foto" add i));
link_arr.push("noticias/vernoticia.php?notid="+eval("this.id_noticia" add i));
noticia_arr.push(eval("this.news" add i));
}
}
Código PHP:
if (success) {
var mytotal=this.total;
for (i=0; i<=mytotal-1; i++) {
pic_arr.push(this["this.foto" + i]);
link_arr.push("noticias/vernoticia.php?notid="+this["this.id_noticia" +i]);
noticia_arr.push(this["this.news" +i]);
}
}