用這個 function 就可防止圖片大於screen, 難於觀看。
$("img").each(function(){
if($(this).width() > $(this).parent().width()) {
$(this).width("100%");
}
});
用這個 function 就可防止圖片大於screen, 難於觀看。
$("img").each(function(){
if($(this).width() > $(this).parent().width()) {
$(this).width("100%");
}
});
另一個手工打造的 Jquery 例子.較輕巧方便。
http://15daysofjquery.com/edit-in-place-with-ajax-using-jquery-javascript-library/15/
Project 需要做一個 in place edit 的表格,
JQuery 已有plug-in, 相當好用. 不用自己寫 . good~
幾行就OK~
$(document).ready(function(){ x = document.getElementById('imgID'); $('.swapImageClass').bind('click', 'any_data', function(e){ x.src = $(this).attr("src"); }); });