jquery如何比较字符串到其他字符串的结尾

这个问题在这里已经有了答案:

  • endsWith在JavaScript 29答案

  • 这个怎么样?

    if(a.substr(a.length - b.length).toLowerCase() == b.toLowerCase()) {
        // b == last characters of a
    }
    

    如果您需要区分大小写,只需删除.toLowerCase()方法。


    function endsWith(str, suffix) {
        return str.indexOf(suffix, str.length - suffix.length) !== -1;
    }
    
    链接地址: http://www.djcxy.com/p/83887.html

    上一篇: jquery how to compare character string to end of other string

    下一篇: How to fix the position of MBProgressHUD to center in a UITableView