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");
何らかの理由で、 var myPlugin = new $.fn.userForm(); の実行中に IE でコードが壊れます。
この問題を解決するにはどうすればよいですか?