我有一张图片(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();
});
});
答案 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
。