JQtouch事件?
我试图在单击类 djl
时调用函数,但我不知道出了什么问题。它不起作用。
这是我的代码:
$("a.dj").click(function(){
$.getJSON("http://sdsdds.com/sds.json",function(result){
$.each(result, function(i, field){
$("ul#alb").append("<li><a class='djl' href='#songs'>" + field.name + "</a></li>");
上面的代码工作完美,但问题从这里开始:
$("a.djl").click(function(){
$('#songs').replaceWith('<div>fnuh</div>');
请帮助我。
I'm trying to call a function on click of class djl
but I don't know what's wrong. It's not working.
Here is my code:
$("a.dj").click(function(){
$.getJSON("http://sdsdds.com/sds.json",function(result){
$.each(result, function(i, field){
$("ul#alb").append("<li><a class='djl' href='#songs'>" + field.name + "</a></li>");
The above code works perfect but problem starts here:
$("a.djl").click(function(){
$('#songs').replaceWith('<div>fnuh</div>');
Help me out please.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我怀疑在绑定时没有与选择器“a.djl”匹配的元素。如果是这样,您需要使用实时事件进行绑定:
I suspect at the time of binding there is no element matchting the selector "a.djl". If so you need to use the live event for binding: