How do you get the id of jQuery to have the value of. In general you can't get it

  • 2020-03-30 02:40:36
  • OfStack

In the form: id = "pojo.name" with jQuery value. If $("#pojo.name").val() is not available directly. The correct method is:
 
$("[id='pojo.namepojo.name']").val(); 

Related articles: