我需要 jQuery 中的两件事(类似推特)
- 正则表达式一个正常的链接
- 检查链接是图像还是网站/文档/等(所以我可以使用灯箱或其他东西)。
例如,我有来自 json 对象的以下文本:
嗨,我创建了这个 http://flicker.com/image,然后我去了 http://www.google.com #home #alone
- 如果内容是图像,则必须检查链接
- 必须添加 A 元素。
- 还必须链接主题标签“#”。
我对 jQuery 有一点了解,我编辑/创建了以下脚本(可能不太好,但此时它正在工作)
var username='yourname'; // set user name
var format='json'; // set format, you really don't have an option on this one
var url='http://api.twitter.com/1/statuses/user_timeline/'+username+'.'+format+'?callback=?'; // make the url
var count = 0; // Start from 0
var maxTweet = 10; // Maximum tweets (max limit is 15)
$.getJSON(url,function(tweet){ // get the tweets
$.each( tweet, function(i, l){
var month1 = {}; // building my month array
month1['Jan'] = '01';
month1['Feb'] = '02';
month1['Mar'] = '03';
month1['Apr'] = '04';
month1['May'] = '05';
month1['Jun'] = '06';
month1['Jul'] = '07';
month1['Aug'] = '08';
month1['Sep'] = '09';
month1['Oct'] = '10';
month1['Nov'] = '11';
month1['Dec'] = '12';
var d = tweet[count].created_at; // getting date
var d = d.split(" "); // Splitting date
var e = tweet[count].created_at.split(" "); // Splitting date
var a = d[1]; // Month
var month = month1[a]; // still month
var d = d[5] + '-' + month + '-' + d[2] + 'T' + d[3] + 'Z' + d[4]; // date like 30-05-2011T13:45:45Z+1000
var date = prettyDate(d); // using prettyDate founded on the Web
if(count < maxTweet){
if(date = 'undefined'){
var date = e[2] + '-' + month + '-' + e[5] + ' om ' + e[3];
} // if it is out of range
$("#twitter .slides_container").append('<p> <a href="http://twitter.com/#!/' + tweet[count].user.name + '" target="_blank"><img src="' + tweet[count].user.profile_image_url + '" alt="' + tweet[count].user.name + '" class="twitpic"></a> ' + tweet[count].text + '<br /><em>' + date + '</em></p>')
}
});
count++;
});
tweet[count].text = 我需要正则表达式的地方
已编辑(计数++;)