How do I get html tag value (div) in javascript

后端 未结 7 677
抹茶落季
抹茶落季 2020-12-21 11:01

I have implemented this function (libphonenumber javascript )in a website http://www.phoneformat.com/

How do i get the value returned by this html tag. Whether Yes

7条回答
  •  温柔的废话
    2020-12-21 11:42

    The .val() method is primarily used to get the values of form elements such as input, select and textarea.

    Use

    $("#phone_valid").text();
    

    to get DIV text content or

    $("#phone_valid").html();
    

    if you want markup.

提交回复
热议问题