你可以从站长工具中看到只有加密,没有解密.
如果只是单纯去除空格和换行,你用站长工具中的排版就可以还原哦
用document.write方法将文本输出到网页。
\n是JS换行符的转义符,BR标签是HTML的换行标签。
你用document.write方法将文本输出到网页,要在网页里产生换行效果,要用BR标签,因为浏览器会忽略换行符。
'asd'+'
'+'dsf' == 'asd
dsf'
<BR>是HTML4及以下版本的换行标签, <br />是XHTML1.0及以后版本的换行标签. 其实产生的效果是完全一致的, 只不过遵循的标准不同, 语法上有些差异。
json作为ajax常用的一种数据类型,经常使用。但如果字段中出现换行符如何处理?去掉显然不合适。有些字段本来就有换行符,如何能去掉?
测试一下json类的处理,也没有发现。想不到最终的处理确实如此简单:
后台代码把换行符\r\n替换为\\r\\n,前台代码js收到的字符就是\r\n
public static string ConvertFromListTojson<T>(IList<T>list, int total, string columnInfos) where T : class
{
string[] cols = columnInfos.Split(new char[]{','},StringSplitOptions.RemoveEmptyEntries)
StringBuilder sb = new StringBuilder(300)
sb.Append("{\"total\":")
sb.Append(total)
sb.Append(",\"rows\":")
sb.Append("[")
foreach (T t in list)
{
sb.Append("{")
foreach (string col in cols)
{
string name = "\"{0}\":\"{1}\","
string value = getValue<T>(t, col)
value = value.Replace("\r\n", "\\r\\n")
sb.Append(string.Format(name, col, value))
}
if (cols.Length >0)
{
int length = sb.Length
sb.Remove(length - 1, 1)
}
sb.Append("},")
}
if (list.Count >0)
{
int length2 = sb.Length
sb.Remove(length2 - 1, 1)
}
sb.Append("]")
sb.Append("}")
return sb.ToString()
}
private static string getValue<T>(T t, string pname) where T : class
{
Type type = t.GetType()
PropertyInfo pinfo = type.GetProperty(pname)
if (pinfo != null)
{
object v = pinfo.GetValue(t, null)
return v != null ? v.ToString() : ""
}
else
{
throw new Exception("不存在属性" + pname)
}
}