1

画像 ( id="plantilla1") があり、これにより html が div ( id="contenidor_plantilla") に表示されます。そのため、画像をクリックすると、 でplantilla1.htmldiv に読み込まれる場合がありますid="contenidor_plantilla"

どうしたの??それは何もしません!!

<a href="#" id="plantilla1"><img class="plantilles" src="imatges/plantilles/plantilla1.gif"></a>

<div id="contenidor_plantilla">hola</div>

これはJqueryコードです:

/****************************    TEMPLATE MAKER      ****************/
$(function () {
    $("#plantilla1").click(function () {
        $("#contenidor_plantilla").load('plantilla1.html');
        alert();
    });
});
4

1 に答える 1

0

このスクリプトの前に jQuery を含めていないようです。このスクリプトの先頭に jquery プラグインを追加します。

<script src='https://ajax.googleapis.com/ajax/libs/jquery/1.9.0/jquery.min.js'>
</script>

<script>
    $(function () {
      $("#plantilla1").click(function () {
        $("#contenidor_plantilla").load('plantilla1.html');
        alert();
      });
    });
</script>

この順番で使用してください。and debug the path of your file which you are trying to load.

于 2013-01-21T18:20:57.767 に答える