1. label与form控件的关联,
<label for="MyInput">My Input</label>
<input id="MyInput" type="text">
for属性指定与label关联的元素的id,不可用name替代。
<label for="MyInput">My Input</label>
<input id="MyInput" type="text">
for属性指定与label关联的元素的id,不可用name替代。
最新回答 / 饿晕倒了
可以用其他信息包裹员工信息,然后用js获取这些标签的值。但是,这样做不好,应为表单结构中有一个method属性,可以规定数据传输的方式是post还是get。
2016-12-10
总觉得
var request;
if(window.XMLHttpQuest)
{
request=new XMLHttpRequest();
//IE7+,firefox,chrome,opera,safari...
}
else
{
request=new ActiveXObiect("Microsoft.XMLHTTP");//IE6,IE5
}
是错的
var request;
if(window.XMLHttpQuest)
{
request=new XMLHttpRequest();
//IE7+,firefox,chrome,opera,safari...
}
else
{
request=new ActiveXObiect("Microsoft.XMLHTTP");//IE6,IE5
}
是错的
2016-12-09
Notice: Undefined index: name in /Users/LXH/PhpstormProjects/hello.php on line 54
2016-12-09
最新回答 / 慕粉3122678
你图中的地方其实是在url中添加参数,而post不接收url中的参数。你看下图,在form中添加参数之后,不会再URL中显示<...图片...>
2016-12-09