[Htmlparser-user] How to extract the Select Tag in the Form?
Brought to you by:
derrickoswald
|
From: sue a. <asd...@gm...> - 2006-05-07 13:40:07
|
Hi
I want to extract the select tag from the form,how to do it?
for example:
the page likes this,and I want to know in the form1 there is one
select tag and in the form1 there is one select tag too!
<html>
=09
<form name =3D form1>
<input type=3Dtext name=3D"usrname">
<select name=3D"sex">
<option value=3D"female" selected>female</option>
<option value=3D"male">male</option>
</select>
</form>
<form name =3D form2>
<input type=3Dtext name=3D"email">
<select name=3D"lang">
<option value=3D"english" selected>english</option>
<option value=3D"french">french</option>
</select>
</form>
</html>
Regards
sue
|