jquery异国情调的id选择

有谁知道如何选择与jeury一个id这个forms1329456738.1053,name

非工作示例: http : //jsfiddle.net/zep6Y/

 
Some text
aaa
 $('#1329456738.1053,name').text() 

刚检查,工作:

 $('.publish_post').click (function(){ alert (this.id); alert ($('#1329456738\\.1053\\,name').text()); }) 

这可能更一致:

 alert ($('[id="' + this.id + '"]').text());