如果我将一个字符串加载到一个变量中,使用什么方法来确定字符串是否以“/”正斜杠结尾?
var myString = jQuery("#myAnchorElement").attr("href");
解决方法
一个正则表达式是有效的,但是如果你想避免整个隐含的语法,这里有一些应该起作用的事情:
javascript/jquery add trailing slash to url (if not present)
var lastChar = url.substr(-1); // Selects the last character if (lastChar !== '/') { // If the last character is not a slash ... }