my_lib.asp
来自「购物系统时尚版.强大的后台文章编辑器的功能」· ASP 代码 · 共 18 行
ASP
18 行
<%
Function leach(str) '去除部分html代码
if str<>"" then
str=replace(replace(replace(replace(replace(str,chr(34),"""),chr(39),"'"),"<","<"),">",">"),vbCrlf,"<br>")
end if
leach=str
End function
Function Outleach(str)
if str<>"" then
str=replace(replace(replace(replace(replace(str,""",chr(34)),"'",chr(39)),"<","<"),">",">"),"<br>",vbCrlf)
end if
Outleach=str
End function
%>
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?