87,993
社区成员
发帖
与我相关
我的任务
分享$(document).ready((function () {
'use strict';
var fullImageList = drawing_image_list.full;
if (fullImageList != null && fullImageList != '') {
var a = window.confirm('发现了图片链接,是否查看?');
if (true == a) {
for (var i = 0; i < fullImageList.length; i++) {
document.write('<a href=' + fullImageList[i] + '>' + fullImageList[i] + '</a><br>');
}
}
}
}) ());
