我试图了解说唱天才如何启用功能,使用户能够突出显示,然后在突出显示完成后显示弹出框。我将如何使用 jquery 做到这一点?
如果有帮助,我还将在我的项目中使用 twitter 引导程序来处理我的项目中的其他项目,包括用户单击按钮后的弹出框。
编辑:第一个示例有效(用户在输入框中选择文本),但第二个示例(用户在“内容”中选择文本)不起作用。
<p class = 'content'>
Click and drag the mouse to select text in the inputs.
</p>
<input type="text" value="Some text" />
<input type="text" value="to test on" />
<div></div>
<script>
$(":input").select( function () {
$("div").text("Something was selected").show().fadeOut(500);
});
$("content").select( function () {
$("div").text("Something else outside of input was selected").show().fadeOut(5000);
});
</script>