1

私は prettyPhoto プラグインを使用していますが、次の 2 つの問題を除いてすべて問題ありません。

ボックスを非表示にするオプションを設定しても、ボックスの上部とタイトルに奇妙な文字が表示されます。これは私の関連コードです:

HTML:

  <a id="linkGraph" rel="prettyPhoto[iframes]" href="graph.php?iframe=true" title="Gráfica">Iframe</a>
  <a id="linkGraph" rel="prettyPhoto[iframes]" href="graph.php?iframe=true" title="Gráfica">Iframe</a>
  <a id="linkGraph" rel="prettyPhoto[iframes]" href="graph.php?iframe=true" title="Gráfica">Iframe</a>

Javascript:

$("a[rel^='prettyPhoto']").prettyPhoto({
    animation_speed: 'slow',
      social_tools: false,
      theme: 'facebook', /* pp_default / light_rounded / dark_rounded / light_square / dark_square / facebook */
      show_title: false
    });

しかし、結果は次のとおりです。

結果のコード

赤い丸でマークした項目が表示されるのはなぜですか? 前もって感謝します。

4

1 に答える 1

0

これを使用してみてください:

http://forum.jquery.com/topic/getting-strange-characters-using-ajax


ヘッダーの種類を変更します。PHP が UTF-8 を提供するには、

header('Content-Type: text/html; charset=utf-8');

于 2013-02-19T07:04:17.430 に答える