每次用户点击链接时,脚本都应检查文档。如果href
为#,则脚本应显示ID video 的div。
(我需要这个特定的部分作为图片库的补丁。我无法使用title
属性来处理图库中不同图像的特定内容。)
伪代码:
If user clicks <a> with href="#"
Show div #video
答案 0 :(得分:3)
$('a[href="#"]').click(function(){
$("#video").show();
});
答案 1 :(得分:2)
$('a[href="#"]').click(function(){
$("#videoDiv").show();
});
答案 2 :(得分:1)
$('a[href="#"]')
然后做你的节目div!
答案 3 :(得分:1)
您可以使用$('a[href=#]').click(myFunction);
答案 4 :(得分:0)
试试这个:
$('a[href$=#]').click(function(e){
$("#video").show();
e.preventDefault();
return false;
});