$()就是jQuery中的函数,它的功能是获得()中指定的标签元素。如示例中$(“p”)会得到一组P标签元素,其中“p”表示CSS中的标签选择器。$()中的()不一定是指定元素,也可能是函数。
2016-04-21
是否缺少“input”, <button>按钮通常也被认为是提交按钮,为更好区分,只要在:submit选择器之前添加“input”符号
2016-04-20
$("#frmV").ajaxForm({
url: "http://www.imooc.com/data/form_f.php",
target: ".tip"
});
url: "http://www.imooc.com/data/form_f.php",
target: ".tip"
});
2016-04-20
url:'http://www.imooc.com/data/check.php',
type:'post',
type:'post',
2016-04-20
应该是这样的 $("div>label").css("border", "solid 5px red");
2016-04-20