2013-08-29 63 views

回答

-1

我會給你idea..Suppose要處理所有一個標籤

HTML

<a href="http://site.com/index.php#comment">Link<a> 

的JavaScript

$('a').click(function(event){ 
event.preventDefault(); 
var url = $(this).attr('href'); 
var lastPart = url.split('#')[1]; 
if(lastPart=== 'comment') { 
//do something 
} else if(lastPart === 'post') { 
//do something 
} 
}); 
相關問題