if(url.contains(/) at the end of the url){
//do nothing
}
else if(url.not contains(/) at the end of the url)
//url must be appended with "/"
}
<a href="www.xyz.com/abc"></a>
这是我的一段代码
这里的网址是www.xyz.com/abc
,但我需要它www.xyz.com/abc/
如果你注意到新的网址,它会附加“/”
谢谢