語境
我只想選擇一個圖像,並刪除其他現有的圖像切換
現在很多圖像可以這樣選擇的邊界:
我想要選擇和取消選擇單個圖像的幫助。
我的代碼
function clickpick(item) {
for (var i = 5; i < document.images.length; i++) {
document.images[i].onclick = function() {
if (this.style.borderWidth == '5px') {
selectpic = '';
$("#display-frame").find("*").css("border", "0");
} else {
this.style.border = '5px solid blue';
selectpic = $(item).attr("url");
}
};
}
圖像是自動生成的
的Html
<div class="mainpic"><img src="';path+=file.filepath+'" class="uploader-thumb-img" style="width: 108px; height: 120px; top: 0px; left: 0px; "/></div>
更新: 我要選擇的圖像遺憾的URL忘了提,
林搞不清你問這個問題?你能告訴我們你的圖像的html結構嗎? – Undefined 2012-07-25 11:35:22