是什麼什麼/.*=/ '' 意味着VAR ID = this.href.replace(/.*=/, '');?
/.*=/,''
在
var id=this.href.replace(/.*=/,'');
是什麼意思?
的完整代碼
function delete_subscriber(){
var id=this.href.replace(/.*=/,'');
this.id='delete_link_'+id;
if(confirm('Are you sure you want to delete this subscriber?'))
$.getJSON('delete.php?ajax=true&id='+id, remove_row);
return false;
}
我認爲它是正則表達式,但我對此知之甚少。
請幫助。
不僅僅是直到等號(=)..但直到該行的最後一個等號(=).. – 2010-01-07 21:04:25
作爲已經在mopoke的答覆中提到:在默認情況下'.'(DOT)不匹配換行符。由於這個答案似乎是公認的答案,我也會在這裏提到它。 – 2010-01-07 21:13:28