显示bt工具提示时出现“TypeError:$(...)为空”错误

时间:2013-09-05 03:46:42

标签: javascript jquery

我想在按钮点击时显示bt工具提示。这是我的按钮:

<input type='button' name='ajay' id='ajay' value='ajay' onclick="test()"/>

这是我的jQuery / javascript代码 -

function test() {
    $('#ajay').bt('Contents of the tip is provided in the .bt() call',
        {
            trigger: 'click',
            positions: 'top'
        }
    );
    $('#ajay').btOn();
}

我收到以下错误 - TypeError: $(...) is null

1 个答案:

答案 0 :(得分:0)

添加以下行:

console.log("jQuery defined: " + $ === undefined)

听起来jQuery库没有加载。