帮助使用SimpleModal插件(JQUERY)

时间:2010-02-03 21:20:12

标签: jquery jquery-plugins simplemodal

您好我正在尝试使用Simple Modal插件,但是当我点击链接时,对话框会快速消失。我只想尝试运行一个简单的对话框,如http://www.ericmmartin.com/projects/simplemodal/#examples所示。

请告知如何使其运行。

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" >
<head>

<meta http-equiv="content-type" content="text/html; charset=utf-8" />
    <script type='text/javascript' src='http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.min.js?ver=1.3.2'></script>
    <script type='text/javascript' src='http://www.ericmmartin.com/wordpress/wp-content/themes/emm-v3/scripts/jquery.plugins.js?ver=1.0.2'></script>
    <script type='text/javascript' src='http://www.ericmmartin.com/wordpress/wp-content/themes/emm-v3/scripts/jquery.simplemodal.js?ver=1.3.3'></script>
    <script type="text/javascript">
 $(document).ready(function() {
   $("a").click(function() {
        // Chained call with no options
        $("#sample").modal();
   });
 });
    </script> 

 <title>hi</title>
</head>     


<body>
<a href="">Link</a>

</body>
</html>

3 个答案:

答案 0 :(得分:3)

您可以下载基本演示,您将有一个如何使用SimpleModal的简单示例。

http://www.ericmmartin.com/projects/simplemodal-demos/

顺便说一句,请不要热链接到我网站上的脚本。

-Eric

答案 1 :(得分:0)

您需要停止链接的默认功能。 所以将代码更改为:

<script type="text/javascript">
    $(document).ready(function() {
        $("a").click(function(evt) {
            // Chained call with no options
            $("#sample").modal();
            evt.preventDefault();
        });
    });
</script> 

答案 2 :(得分:0)

我有同样的问题并在更新jquery-1.8.3.js后解决了