jquery弹出错误

时间:2011-05-18 06:15:02

标签: jquery asp.net

我正在运行简单的jquery代码来打开visual studio中的弹出窗口。而不是在新窗口中打开它导航和像超链接一样wirking。我不知道哪里出错了。我的代码是;

<script type="text/javascript" src="http://ajax.microsoft.com/ajax/jquery/jquery-1.4.2.min.js" >
     $(document).ready(function (){
    $('.examp').popupWindow({
    height:500,
    width:800,
    top:50,
    left:50
    });
    });
</script>  

<a href ="http://google.com" title="google.com" class ="examp">open</a>

这真的是一个简单的问题,但我找不到哪里出错......

2 个答案:

答案 0 :(得分:2)

我很可能是因为你没有在document.ready内运行popupWindow函数。试试这个:

<script type="text/javascript" >
    $(document).ready(function() {
        $('.examp').popupWindow({
            height:500,
            width:800,
            top:50,
            left:50
        });
    });
</script> 

答案 1 :(得分:1)

链接没有调用该函数。试试这个:

$(function() { //this is the ready function
    $('a.examp').click( function () { //when the link is clicked
        //popup code here
    });
}