我想了解rap天才如何啓用功能,使用戶能夠突出顯示,然後在突出顯示完成後顯示彈出窗口。我將如何使用jQuery來做到這一點?如何在突出顯示文本後啓用彈出窗口?
如果有幫助,我還在我的項目中使用twitter bootstrap作爲其他項目,包括用戶單擊按鈕後的彈出窗口。
編輯:第一個示例工作(用戶在輸入框中選擇文本),但第二個(用戶選擇'內容'中的文本)不起作用。
<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>
檢查mouseup事件。這應該給你一個提示。 – 2013-03-12 22:49:48
@HugoDozois我已經添加並更新到現有的代碼。它可以用.select代替嗎? – sharataka 2013-03-12 23:13:31