|
@@ -96,8 +96,10 @@
|
|
|
str += '<td style="word-break:break-all">' + item.jyUrl + '</td>';
|
|
|
str += '</tr>';
|
|
|
}
|
|
|
- str = str.replaceAll("undefined", "")
|
|
|
- str = str.replaceAll("null", "")
|
|
|
+ // str = str.replaceAll("undefined", "")
|
|
|
+ // str = str.replaceAll("null", "")
|
|
|
+ str.replace(new RegExp("undefined",'g'),"b");
|
|
|
+ str.replace(new RegExp("null",'g'),"b");
|
|
|
$(".box").html(str);
|
|
|
} else {
|
|
|
$("#resultContent").text(JSON.stringify(r));
|