。
我正在使用youtube API和jQuery。使用某个脚本,我可以将YouTube提要作为图像,请查看以下示例:JSFIDDLE
我正在尝试进行一个jQuery点击事件,该事件将必须调用另一个称为"少量"这样的脚本:
$("a").click(function(event) {
event.preventDefault();
$(this).embedly({
chars: 220,
nostyle: true,
key:':41f042ec20b04dda84448dc4a46d357d'
});
});
它似乎不起作用。当我从桌面执行此操作时,单击并不会局部调用零件,并且无论防止默认值如何。
您可以使用事件授权来确保将处理程序触发,而不管锚何时进入DOM:
$(document).on("click","a",function(event) {
event.preventDefault();
$(this).embedly({
chars: 220,
nostyle: true,
key:':41f042ec20b04dda84448dc4a46d357d'
});
});
http://jsfiddle.net/bfysr/3/