我想在按钮点击时显示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
答案 0 :(得分:0)
添加以下行:
console.log("jQuery defined: " + $ === undefined)
听起来jQuery库没有加载。