加载不从HTML文件加载任何内容

时间:2013-01-21 18:12:29

标签: jquery load

我有一张图片(id="plantilla1"),这使得html成为一个div(id="contenidor_plantilla")。因此,当我点击图片plantilla1.html时,可能会使用id="contenidor_plantilla"加载到div中。

有什么问题?它没有做任何事情!!

<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();
    });
});

1 个答案:

答案 0 :(得分: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