这应该有效,但事实并非如此。 我对这件事感到很生气,请有人解释为什么这不起作用。 我无法在漂亮的内镜中选择任何内容。 我可以使用别的东西,但仍然让我发疯,不知道。
谢谢。
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html lang='en' xml:lang='en' xmlns='http://www.w3.org/1999/xhtml'>
<head>
<meta content='text/html; charset=utf-8' http-equiv='Content-Type' />
<title>test</title>
<script src="js/jquery-1.11.1.min.js" type="text/javascript"></script>
<script src="js/jquery.prettyPhoto.js" type="text/javascript"></script>
<link rel="stylesheet" href="css/prettyPhoto.css" type="text/css"/>
<script type="text/javascript" charset="utf-8">
$(document).ready(function(){
$("a[rel^='prettyPhoto']").prettyPhoto({
social_tools:false,
overlay_gallery:false,
show_title:false});
$('#button').on('click', function() {
alert('great');
});
});
</script>
</head>
<body>
<a href="#inline-1" rel="prettyPhoto" >click me</a>
<div id="inline-1" style="display:none;">
<p>I can't target anything inside here why??</p>
<a href="#" id="button">button</a>
</div>
</body>
</html>