Đoạn code sau đây sẽ tự động làm việc đó, tự động thêm các thuộc tính target="_blank" cho các liên kết ngoài.
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js"></script>Source: http://www.madeincima.it/en/articles/jquery-tutorial-external-links/
<script type="text/javascript">
/*
jQuery - External Links
Created by Andrea Cima Serniotti - http://www.madeincima.eu
*/
$(document).ready(function () {
// ---- External Links ----------------------------------------------------------------------------------------------------
$("a[href*='http://']:not([href*='"+location.hostname+"']),[href*='https://']:not([href*='"+location.hostname+"'])").attr("target","_blank").attr("title","Opens new window").addClass("external");
});
</script>
<style type="text/css">
.external{background:url(http://1.bp.blogspot.com/_HJvXUqHmf9...ernal_link.gif) top right no-repeat;padding-right:18px}
</style>
làm vậy sẽ tiết kiệm được nhiều công sức,thanks bạn
Trả lờiXóa