最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

jquery - indexOf is not a function in Firefox, Opera but works in IE, indexOf alternative in javascript to test string contains?

programmeradmin2浏览0评论

Getting an error using indexOf call in Javascript on Firefox and Opera. Works fine in IE.

Following is the error message:

Action

function anonymous(Grid, Row, Col, Event) { 
    return Grid.ActionShowPopupMenu(); 
} 

for event OnRightClick failed with exception: row.id.indexOf is not a function

I'm testing that a string contains another string in Javascript and using the indexOf function of a string. The calls however are being made in JQuery functions. Perhaps that is the reason for the problem? Is there an alternative to using indexOf in Javascript to test if a string contains another string? Is there a workaround for this problem?

Getting an error using indexOf call in Javascript on Firefox and Opera. Works fine in IE.

Following is the error message:

Action

function anonymous(Grid, Row, Col, Event) { 
    return Grid.ActionShowPopupMenu(); 
} 

for event OnRightClick failed with exception: row.id.indexOf is not a function

I'm testing that a string contains another string in Javascript and using the indexOf function of a string. The calls however are being made in JQuery functions. Perhaps that is the reason for the problem? Is there an alternative to using indexOf in Javascript to test if a string contains another string? Is there a workaround for this problem?

Share Improve this question edited Jun 12, 2012 at 9:28 Someth Victory 4,5592 gold badges25 silver badges27 bronze badges asked Jun 12, 2012 at 8:11 user840930user840930 5,58822 gold badges68 silver badges98 bronze badges 2
  • 2 indexOf definitely works in FF. Been using it for not sure how long.. It might be a problem is with the object you're calling it with. – techfoobar Commented Jun 12, 2012 at 8:14
  • If you're passing jQuery objects, especially if Row is a jQ object, .id will be undefined/null. Either use Row.getAttr('id').indexOf() or use Row.get(0).id.indexOf(). If that fails, too: Row is capitalized in your function declaration, but the exception shows a lower case row. JS is CaseSensitive – Elias Van Ootegem Commented Jun 12, 2012 at 8:20
Add a ment  | 

3 Answers 3

Reset to default 6

String.indexOf is perfectly OK in all browsers. I assume the id property of your row object is no string (nor array, btw, because indexOf is also defined on arrays (except for IE))

indexOf is not okay for IE prior to IE9. If you want your code to work in ie < 9, you should define the method for non-pliant browsers in a mon js file that can be dropped into every page. See this thread for more details. The code is taken from Mozilla

if (!Array.prototype.indexOf) {
    Array.prototype.indexOf = function (searchElement /*, fromIndex */ ) {
        "use strict";
        if (this == null) {
            throw new TypeError();
        }
        var t = Object(this);
        var len = t.length >>> 0;
        if (len === 0) {
            return -1;
        }
        var n = 0;
        if (arguments.length > 1) {
            n = Number(arguments[1]);
            if (n != n) { // shortcut for verifying if it's NaN
                n = 0;
            } else if (n != 0 && n != Infinity && n != -Infinity) {
                n = (n > 0 || -1) * Math.floor(Math.abs(n));
            }
        }
        if (n >= len) {
            return -1;
        }
        var k = n >= 0 ? n : Math.max(len - Math.abs(n), 0);
        for (; k < len; k++) {
            if (k in t && t[k] === searchElement) {
                return k;
            }
        }
        return -1;
    }
}

indexOf() is ok for all browsers. It is designed for both, String and Array, see this: http://jsfiddle/SquTp/

There is maybe something wrong with your dom selection, or you may use it in the wrong way.

发布评论

评论列表(0)

  1. 暂无评论