1
A
回答
1
這是使用jQuery非常簡單:
<script>
$(document).ready(function(){
$("a").click(function(){alert($(this).text());});
});
</script>
當然,你可能會想要做的比提醒文字以外的東西。
+3
他想知道如何處理他在firefox擴展中的點擊事件而不是在html頁面 – 2009-05-20 22:17:57
6
如果你的意思是處理在網頁的用戶正在瀏覽的鏈接點擊事件,那麼這是如何:
// handle the load event of the window
window.addEventListener("load",Listen,false);
function Listen()
{
gBrowser.addEventListener("DOMContentLoaded",DocumentLoaded,true);
}
// handle the document load event, this is fired whenever a document is loaded in the browser. Then attach an event listener for the click event
function DocumentLoaded(event) {
var doc = event.originalTarget;
doc.addEventListener("click",GetLinkText,true);
}
// handle the click event of the document and check if the clicked element is an anchor element.
function GetLinkText(event) {
if (event.target instanceof HTMLAnchorElement) {
alert(event.target.innerHTML);
}
}
相關問題
- 1. 如何獲得全文,即使點擊鏈接以使用硒擴展文本?
- 2. Firefox擴展鏈接提取器
- 3. Mozilla(Firefox,Thunderbird)擴展名:如何獲得擴展名(來自install.rdf)?
- 4. MediaWiki本地擴展鏈接
- 5. Mozilla Firefox擴展Javascript Javascript
- 6. 獲得從文本鏈接
- 7. 如何獲得沒有文件擴展名的鏈接名稱?
- 8. Firefox的擴展名,以獲得谷歌PageRank和alexa排名
- 9. 鏈接文本屬性在Action中不可用JavaScript鏈接擴展方法MVC4
- 10. HREF鏈接擴展
- 11. Firefox擴展覆蓋注入JavaScript文件?
- 12. firefox擴展JavaScript存儲
- 13. 使用Firefox擴展JavaScript從
- 14. javascript打開Firefox擴展
- 15. firefox擴展:FireFox 4.0中的鏈接識別(無href標籤)
- 16. 在Chrome擴展中正確鏈接JavaScript
- 17. 鏈接numpy擴展
- 18. 重定向不帶.html擴展名的鏈接以鏈接.html擴展名
- 19. 在HTML中擴展Flash,覆蓋Firefox,Chrome,Opera中的文本鏈接
- 20. 在Firefox擴展中,如何將富文本/鏈接複製到剪貼板?
- 21. Firefox擴展,訪問文檔
- 22. 檢測Firefox擴展版本
- 23. 獲得使用JavaScript或擴展
- 24. PHP:從擴展類的鏈接方法中獲得結果?
- 25. 如何獲得沒有擴展的鏈接?
- 26. java從基本接口獲得所有擴展接口
- 27. 頁面調用Firefox擴展的JavaScript JavaScript
- 28. 使用jQuery擴展鏈接
- 29. jQuery在Firefox擴展
- 30. Firefox擴展文件結構
通過「周圍的鏈接文本」,你的意思是開之間的文本關閉標籤? – ahockley 2009-05-20 22:10:35
實際上意味着整個段落,但即使在標籤之間的文本將是好的 – Lilz 2009-05-21 00:46:23