如何抓取特定圖像;如果圖像被命名爲:
if img attr scr has specific word
pc_monitor_24.jpg
mac_monitor_23.jpg
pc_mouse_23.jpg
通過選擇僅部分名稱?
拼搶像textarea的輸入:
如果輸入「pc
」
$('.textarea').keyup(function(){
var getName = $(this).html();
});
$('img.imgResult').attr('src', getName+'.jpg'); // this works but only if full name entered
是否有可能檢索匹配的圖像的數量和打印他們在屏幕上?
我appretiate任何好的建議,謝謝