Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个 PrettyPhoto 附带的 HTML 模板,但我不知道 js/jquery。我想为我网站中的所有图像应用漂亮的照片。jquery-prettyphoto.js 包含在所有页面中。
您需要对图像应用任何类或 rel 属性。并且可能会在顶部添加类似下面的内容。
<script type="text/javascript" charset="utf-8"> $(document).ready(function(){ $("a[rel^='prettyPhoto']").prettyPhoto(); }); </script>
如果您可以发布任何一页,那将更加清晰。