6

大家好,如果点击了img src,我如何检查是否包含特定文本,然后执行某些功能?

例子:

<img src="file:///C:/path/img4-dog.jpg">, <img src="file:///C:/path/img4-cat.jpg">

如果单击 img src 包含类似的“狗”,则运行警报?

4

5 回答 5

10
$('img').click(function(){
   if (this.src.indexOf("dog") != -1) 
      alert('contains dog');
})
于 2012-09-13T21:55:38.700 回答
7
$('img').click(function(e) {

    if ($(this).attr('src').indexOf('dog') != -1) {
        alert('this contains dog');
    } 

});
于 2012-09-13T21:55:12.733 回答
3

尝试这个

$('img').click(function(){
   if($(this).attr('src').toLowerCase().indexOf("dog") >= 0){
       alert('text found');
     }
});
于 2012-09-13T21:56:54.643 回答
2
$('img').click(function(){
    if($(this).attr('src').indexOf('img4-dog') >= 0) alert('found');
});
于 2012-09-13T21:55:08.440 回答
1
$('img').on('click', function() {
    var imgsrc = $(this).attr('src');
   // Use a regular expression to find a match
    var test = imgsrc.search(/dog/);
    if (test > -1) {
      // do something
    }
});
于 2012-09-13T22:01:09.643 回答