关于js截取最后一个“/”以后内容的代码实例讲解
程序员文章站
2024-01-11 09:04:40
关于js截取最后一个“/”以后内容的代码实例讲解
if(s!=null||s!="")...
关于js截取最后一个“/”以后内容的代码实例讲解
if(s!=null||s!=""){ var name=s.substring(s.lastindexof("/")+1); var p="<a href='"+s+"'>"+name+"</a>"; $("#levelreport").html(p); }