HTML语言,求大神解释
求大神解释这几段代码的意思,并讲解为什么要这么用<input style="FONT-SIZE: 13pt" size="35" name="q">
<input type="hidden" value="aff-sowang" name="client">
<input type="hidden" value="GB2312" name="ie">
<input type="hidden" value="UTF8" name="oe">
<input type="hidden" value="zh-CN" name="hl">
<input type="hidden" value="searchbutton3" name="channel"> --------------------编程问答-------------------- 一个输入的文本域,为了输入内容
<input style="FONT-SIZE: 13pt" size="35" name="q">
下面五个是隐藏域,在页面上看不到,设置一些数值,为提交使用
<input type="hidden" value="aff-sowang" name="client">
<input type="hidden" value="GB2312" name="ie">
<input type="hidden" value="UTF8" name="oe">
<input type="hidden" value="zh-CN" name="hl">
<input type="hidden" value="searchbutton3" name="channel"> --------------------编程问答-------------------- 一个显式的文本输入框,字体大小13pt,字体宽度35个字节,设定的名字为q
<input style="FONT-SIZE: 13pt" size="35" name="q">
一个隐式的文本输入框,值为aff-sowang,设定的名字为client
<input type="hidden" value="aff-sowang" name="client">
一个隐式的文本输入框,值为GB2312,设定的名字为ie
推断:此处可能是为了传值使用,可能主要用于字符集的更改
<input type="hidden" value="GB2312" name="ie">
一个隐式的文本输入框,值为UTF8,设定的名字为oe
推断:此处可能是为了传值使用,可能主要用于字符集的更改
<input type="hidden" value="UTF8" name="oe">
一个隐式的文本输入框,值为zh-CN,设定的名字为hl
推断:此处可能是为了传值使用,可能主要用于字符集的更改
<input type="hidden" value="zh-CN" name="hl">
一个隐式的文本输入框,值为searchbutton3,设定的名字为channel
<input type="hidden" value="searchbutton3" name="channel">
--------------------编程问答-------------------- 有些值并不在页面上显示出来,但是需要提交到后台,就用<input type="hidden" value="UTF8" name="oe">
这样隐式提交的方式
补充:Java , Java SE