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

javascript - Add jQuery.parseJSON to jQuery 1.3 - Stack Overflow

programmeradmin1浏览0评论

Is it possible to extend jQuery 1.3 to include the parseJSON function from 1.4.1+, and have it function the same way as it does in jQuery 1.4.1+? How would I go about that?

I have some sites where I have to use jQuery 1.3, but I have a tool that requires parseJSON, which was only introduced in jQuery 1.4.1. I vaguely know that I should be taking parseJSON from 1.4.1+ and trying to make it a plugin, but I don't know how to do that.

Is it possible to extend jQuery 1.3 to include the parseJSON function from 1.4.1+, and have it function the same way as it does in jQuery 1.4.1+? How would I go about that?

I have some sites where I have to use jQuery 1.3, but I have a tool that requires parseJSON, which was only introduced in jQuery 1.4.1. I vaguely know that I should be taking parseJSON from 1.4.1+ and trying to make it a plugin, but I don't know how to do that.

Share Improve this question edited Jun 12, 2013 at 12:57 Yahel asked Dec 7, 2010 at 22:34 YahelYahel 37.3k23 gold badges106 silver badges154 bronze badges 2
  • 1 @yc , what about using json2.js?? – kobe Commented Dec 7, 2010 at 22:40
  • @gov my hands are tied as to the functions that are included; I need it to be able to use parseJSON. I know, its ridiculous. – Yahel Commented Dec 7, 2010 at 22:49
Add a ment  | 

3 Answers 3

Reset to default 11

You could make it a plugin like this:

$.extend({
    error: function( msg ) { throw msg; },
    parseJSON: function( data ) {
        if ( typeof data !== "string" || !data ) {
            return null;
        }    
        data = jQuery.trim( data );    
        if ( /^[\],:{}\s]*$/.test(data.replace(/\\(?:["\\\/bfnrt]|u[0-9a-fA-F]{4})/g, "@")
            .replace(/"[^"\\\n\r]*"|true|false|null|-?\d+(?:\.\d*)?(?:[eE][+\-]?\d+)?/g, "]")
            .replace(/(?:^|:|,)(?:\s*\[)+/g, "")) ) {    
            return window.JSON && window.JSON.parse ?
                window.JSON.parse( data ) :
                (new Function("return " + data))();    
        } else {
            jQuery.error( "Invalid JSON: " + data );
        }
    }
});

You can test it here.
This code's adopted from jQuery 1.4.4 - found here. After including the above with jQuery 1.3 as your question has, just use $.parseJSON() as you normally would...or in your case, just include the plugins after the above code and $.parseJSON() will be present for them to use.

You could use Crockfords implementation: https://github./douglascrockford/JSON-js

Or here, for a direct link: https://github./douglascrockford/JSON-js/blob/master/json_parse.js

Is it impossible for you to edit the code that uses 1.3? The jQuery.json plugin provides $.toJSON and $.evalJSON, which are equivalent to the new ones from 1.4. You could try to use the native JSON.parse and JSON.stringify in browsers where it's supported. In older browser you'll need to include JSON2 to add JSON.parse and JSON.stringify support to these browsers.

发布评论

评论列表(0)

  1. 暂无评论