0

我想在按钮单击时显示 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

4

1 回答 1

0

添加以下行:

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

听起来 jQuery 库没有加载。

于 2013-09-05T03:56:12.340 回答