我需要将此<a>
链接转换为jquery.load()
- 怎么做?
这是链接:
<a href="exibelinha.asp?linha=<%= rs_linhas("linha")%>" class="whatever">
<img src="produtos/linhas/pequeno/<%= rs_linhas("foto_inicial")%>" alt="">
<h3><%= rs_linhas("linha")%></h3>
</a>
我需要用这个 jQuery 脚本来实现它:
$('#exibe_galeria').click(function(e) {
$('#galeria_oculta').show();
$('#container').load('exibelinha.asp?xxxx'); //here i need to call the link
e.preventDefault();
});
在我的负载中,我需要用这个字符串调用另一个页面(exibelinha.asp)?linha=<%= rs_linhas("linha")%>