Home > Back-end >  Getting HTML id tags using perl
Getting HTML id tags using perl

Time:01-04

I can get html parameters like

name="something"

like this

cgi->param("something")

then what about when i want to get for id

id="something"

CodePudding user response:

The browser only sends the name and and value of successful controls, and the name is set by the element's name attribute. Their id attribute is not sent, so you will need to use the correct attribute.

  •  Tags:  
  • Related