简体   繁体   中英

jQuery if div contains text, toggle button

I'm trying to get a button to be toggled if a div contains a string of text. Something like:

$(document).ready(function(){
$(function() {
if ('$div#trackingnumber:contains('Hello')');') {
    $("dinput#submitam").toggle()});
}
});

Does anybody know how to do this?

You are on the right way. I only see some syntax errors. Try this

$(document).ready(function(){
     if ($("#trackingnumber:contains('Hello')").length != 0) 
     {
         $("dinput#submitam").toggle();
     }
});

Checkout this jsFiddle too.

Just do like this

$(document).ready(function(){
  if ($("div#trackingnumber:contains('Hello')").length > 0)
  $("dinput#submitam").toggle();
});
$(document).ready(function() {
    if ( $("#trackingnumber:contains('Hello')").length > 0 ) {
        $("#submitam").toggle();
    }
});

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM