-2
我想單擊內聯鏈接時運行腳本,或者輸入URL http://site.com/index.php#comment。與鏈接到評論時在reddit上發生的情況類似。當內聯鏈接「#」被點擊或輸入URL時,如鏈接到reddit註釋時,如何運行jQuery命令
我該怎麼做?
我想單擊內聯鏈接時運行腳本,或者輸入URL http://site.com/index.php#comment。與鏈接到評論時在reddit上發生的情況類似。當內聯鏈接「#」被點擊或輸入URL時,如鏈接到reddit註釋時,如何運行jQuery命令
我該怎麼做?
我會給你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
}
});