$("select").bind("change", function ()
2016-06-28
$(function () {
$("input").bind({
focus:function() {
$("div").html("请输入您的姓名!");
},
blur:function() {
if ($(this).val().length == 0)
$("div").html("你的名称不能为空!");
}
})
});
$("input").bind({
focus:function() {
$("div").html("请输入您的姓名!");
},
blur:function() {
if ($(this).val().length == 0)
$("div").html("你的名称不能为空!");
}
})
});
2016-06-28
直接访问http://www.imooc.com/data/check.php这个地址时只显示“偶数”两个字,那是因为该页面被调用时要传入一个参数,你直接访问时参数是默认值,所以返回结果为偶数,但是在代码中加上type:"post",就可以返回正确结果了。
2016-06-27
通过调用工具函数$.param()可以将一个对象进行序列化并编码成可以在地址栏中直接执行的URL字符串。
题目说的很清楚,主要是有时候你post或者get的时候把需要传输的数据添加在url后面进行传输。
题目说的很清楚,主要是有时候你post或者get的时候把需要传输的数据添加在url后面进行传输。
2016-06-27
原生实现也很简单呐。
function trim(str){
return str.replace(/^\s+|\s+$/g,'');
}
function trim(str){
return str.replace(/^\s+|\s+$/g,'');
}
2016-06-27
原生实现也很简单。
function isEmptyObject(obj){
return !!obj && !!Object.keys(obj).length;
}
function isEmptyObject(obj){
return !!obj && !!Object.keys(obj).length;
}
2016-06-27
bg_red只是增加的类名,而后面的CSS文件才为这个类名设定了样式的
.bg_red
{
background-color: green;
width:159px;
height:42px;
padding:20px;
}
.bg_red
{
background-color: green;
width:159px;
height:42px;
padding:20px;
}
2016-06-27