my_lib.asp

来自「购物系统时尚版.强大的后台文章编辑器的功能」· ASP 代码 · 共 18 行

ASP
18
字号
<%
Function leach(str) '去除部分html代码
if str<>"" then
	str=replace(replace(replace(replace(replace(str,chr(34),"&quot;"),chr(39),"&#039;"),"<","&lt;"),">","&gt;"),vbCrlf,"<br>")
end if
	leach=str

End function

Function Outleach(str)

		if str<>"" then
		  str=replace(replace(replace(replace(replace(str,"&quot;",chr(34)),"&#039;",chr(39)),"&lt;","<"),"&gt;",">"),"<br>",vbCrlf)
		end if

   Outleach=str
End function
%>

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?