$(function () {
$("#btntest").bind("click", function () {
$("div").toggle(function(){
$(this).toggle();
})
})
});
$("#btntest").bind("click", function () {
$("div").toggle(function(){
$(this).toggle();
})
})
});
2015-05-13
$(function () {
$("#btntest").bind("click", function () {
$("div").toggle(function(){
$(this).hide();
$(this).show();
})
})
});
$("#btntest").bind("click", function () {
$("div").toggle(function(){
$(this).hide();
$(this).show();
})
})
});
2015-05-13
使用ajaxSetup()方法设置全局Ajax默认选项
$.ajaxSetup({
dataType:"text",
data:"$('#txtNumber').val()",
type:"post",
success:function(data){}
});
$.ajaxSetup({
dataType:"text",
data:"$('#txtNumber').val()",
type:"post",
success:function(data){}
});
2015-05-12
$.ajax({
url服务器请求的路径,data为请求时传递的数据,dataType为服务器返回的数据类型,success为请求成功的执行的回调函数,type为发送数据请求的方式
})
url服务器请求的路径,data为请求时传递的数据,dataType为服务器返回的数据类型,success为请求成功的执行的回调函数,type为发送数据请求的方式
})
2015-05-12
使用serialize()方法序列化表单元素值
$('#litest').html($('form').serialize());
$('#litest').html($('form').serialize());
2015-05-12
我写的没有问题: $("#btnSubmit").contextMenu("sysMemu",
为啥右键没有弹出菜单??
为啥右键没有弹出菜单??
2015-05-12
正确答案:$("#content").css({"background-color":"red","color":"white"});
2015-05-12