0

我已经创建了我的 jQuery 自定义插件;

(function($){

$.fn.userForm = function(){
var element = this;
var UserDataObj = {
name:"John",
email:"john@example.com",
phone:"9999999999",
desc:"some description"
}


        this.supports_html5_storage = function() 
        {

        };


        this.saveFormData = function(param)
        {


        }


        if (this.supports_html5_storage())
        {

        }
        else
        {

        }



};

})(jQuery);

现在我试图在我的插件中调用一个方法;

var myPlugin = new $.fn.userForm();
myPlugin.saveFormData(".formFieldUserData");

由于某种原因,代码在 IE 中中断,同时执行 var myPlugin = new $.fn.userForm();

我该如何解决这个问题?

4

0 回答 0