現在、Web サイト (vs2003 から vs2010 へ) の移行を行っています。正常にビルドされましたが、IE8 で実行するたびに「エラーがあります: アクセスが拒否されました」が返されます。これはコードです:
$(function() {
$('#container-1').tabs();
$('#container-2').tabs(2);
$('#container-3').tabs({ fxSlide: true });
$('#container-4').tabs({ fxFade: true, fxSpeed: 'fast' });
$('#container-5').tabs({ fxSlide: true, fxFade: true, fxSpeed: 'normal' });
$('#container-6').tabs({
fxFade: true,
fxSpeed: 'fast',
onClick: function() {
alert('onClick');
},
onHide: function() {
alert('onHide');
},
onShow: function() {
alert('onShow');
}
});
$('#container-7').tabs({ fxAutoHeight: true });
$('#container-8').tabs({ fxShow: { height: 'show', opacity: 'show' }, fxSpeed: 'normal' });
$('#container-9').tabs({ remote: true });
$('#container-10').tabs();
$('#container-11').tabs({ disabled: [3] });
$('<p><a href="#">Disable third tab<\/a><\/p>').prependTo('#fragment-28').find('a').click(function() {
$(this).parents('div').eq(1).disableTab(3);
return false;
});
$('<p><a href="#">Activate third tab<\/a><\/p>').prependTo('#fragment-28').find('a').click(function() {
$(this).parents('div').eq(1).triggerTab(3);
return false;
});
$('<p><a href="#">Enable third tab<\/a><\/p>').prependTo('#fragment-28').find('a').click(function() {
$(this).parents('div').eq(1).enableTab(3);
return false;
});
});
IE8 の詳細設定ですべてのエラーを表示することを確認しましたが、これまでのところ、エラーに関する次の情報が表示されます。
Webpage error details
User Agent: Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.2; WOW64; Trident/4.0; .NETCLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; .NET4.0C;.NET4.0E)
Timestamp: Mon, 6 May 2013 02:48:48 UTC
Message: Syntax error
Line: 2
Char: 1
Code: 0
URI: http://localhost:1038/HRSystems/login.aspx? ReturnUrl=%2fHRSystems%2fScripts%2fjquery-1.1.3.1.pack.js
Message: Syntax error
Line: 2
Char: 1
Code: 0
URI: http://localhost:1038/HRSystems/login.aspxReturnUrl=%2fHRSystems%2fScripts%2fjquery.history_remote.pack.js
login.aspx は正常に実行されますが、空の状態は奇妙ですが、現在使用している Web サイトは正常に動作しています。
前もって感謝します。