我在悬停时有一个禁用的输入字段,我想做一个弹出窗口,说这个字段将被自动填充。
<input type="text" class="dcol" data-toggle="popover" data-content="Required Field with Numeric Input" disabled="disabled" style="background-color:#FFFF66" value="">
这是我的jQuery,它不起作用。
$('input:disabled').hover(
function(){
alert("hello");
},
function(){
alert("bye");
}
);
谁能建议我如何实现这一目标。