时间:2021-05-28
JS代码如下。
在调用Ajax返回后。一个奇怪的问题。返回的resultString值是“ok”但是跟字符串"ok"比较确不相等。
Ajax调用out.println()返回的都添加了哪些参数?
放开注释的部分也过滤不掉。
哪位高手遇到过类似的问题。
如何解决的。
请说一下。out.println();返回的到底是个啥。
Js代码
复制代码 代码如下:
// 本地下载
function FTPTest(ip, port, username, password, filedir){
alert("测试");
createXMLHttpRequest();
var url = "DataExportAjaxServlet.doajax?osFlg=ftptest&ip=" + ip + "&port=" + port;
xmlHttp.open("GET",url,true);
xmlHttp.onreadystatechange = goCallback;
xmlHttp.send(null);
}
Js代码
复制代码 代码如下:
// 回调函数
function goCallback(){
if (xmlHttp.readyState == 4){
if (xmlHttp.status == 200){
// 取得执行的结果
var resultString = xmlHttp.responseText;
alert(resultString);
//var newstrb = resultString .replace("\r", "123");
//这句先注释掉
//alert("newstrb-" + newstrb + "-");
if ("ok" == newstrb ){
alert("成功");
document.getElementsByName("buttonSave")[0].disabled = "";
}else{
alert("<bean:message key="ftptest.info.fail"/>");
document.getElementById("errorMessage").innerHTML = '测试不成功';
document.getElementsByName("buttonSave")[0].disabled = "true";
}
}
}
}
声明:本页内容来源网络,仅供用户参考;我单位不保证亦不表示资料全面及准确无误,也不保证亦不表示这些资料为最新信息,如因任何原因,本网内容或者用户因倚赖本网内容造成任何损失或损害,我单位将不会负任何法律责任。如涉及版权问题,请提交至online#300.cn邮箱联系删除。
复制代码代码如下://////过滤字符串中的html代码/////////返回过滤之后的字符串publicstaticstringLostHTML(string
函数esc_js()(过滤Html内嵌JS)参数$text(字符串)(必须)要过滤的字符串。默认值:None返回值(字符串)返回过滤后的字符串。例子?1
C++字符串去重排序实例代码入一个字符串,去掉重复出现的字符,并把剩余的字符串排序输出。实现代码:#include#includeusingnamespaces
C语言中字符串实现逆序实例详解字符串逆序和正序的实现代码:#include#include#include#include#includetyped
编写程序,利用continue语句实现循环体过滤器,过滤“老鹰”字符串,并做相应的处理,但是放弃continue语句之后的所有代码。即若遇到“老鹰”字符串则进行