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