4

BlueDotまたはConnectToQuickBooksボタンのいずれかを表示する.aspxページがあります。IEページから収集した結果のHTMLは、次のようになります。

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

<html xmlns="http://www.w3.org/1999/xhtml">
<head>
    <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1" />
    <title>TrueCommerce to Intuit Connect Page</title>
    <script type="text/javascript" src="https://appcenter.intuit.com/Content/IA/intuit.ipp.anywhere.js"></script>
    <script type="text/javascript">
        intuit.ipp.anywhere.setup({
            menuProxy: 'http://localhost:1384/MenuProxy.aspx',
            grantUrl: 'http://localhost:1384/OauthGrant.aspx'
        });
    </script>
</head>
<body>

<div id="blueDotDiv">
    <ipp:bluedot></ipp:bluedot>
</div>

</body>
</html>

このコードはIEでは表示されません。ChromeとFirefoxで正常に表示されます。

W3C Markup Validation Serviceを使用してHTMLを検証しましたが、予期されていたタグのエラーのみを受け取りました。

次のIEブラウザ
IEバージョンを使用しています: 8.0.7601.1751464ビット版

私たちはSilverlightを使用しており、 Infragistics HTML Viewer Control(Silverlight xamHtmlViewer)を利用してASPXページを埋め込みました。BlueDotメニューは、xamHtmlViewerの内部から呼び出された場合、または直接呼び出された場合は表示されません(ただし、ChromeとFirefoxでは両方の方法で機能します)。

何か案は?

4

1 に答える 1

7

https://ipp.developer.intuit.com/0010_Intuit_Partner_Platform/0025_Intuit_Anywhere/0060_Reference/Widgets/0010_Connect_Button

IE8 で [QuickBooks に接続] ボタンを表示するには、次のように html xmlns 属性が必要です。

<html xmlns="http://www.w3.org/1999/xhtml" xmlns:ipp="">
于 2013-02-19T20:39:04.403 に答える