下面的jQuery腳本在我的網站創建與其他Java/MooTools的腳本的兼容性問題 - 有什麼我可以做,使之更加兼容?jQuery腳本+兼容性
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.4/jquery.min.js"></script>
<script type="text/javascript">
$(document).ready(function() {
$('a[href^="http://"]').filter(function() {return this.hostname && this.hostname !== location.hostname;}).attr('target', '_blank');
});
</script>
注 - 該腳本旨在在新窗口中打開外部鏈接。