javascript // .net // jquery 函数调用问题
想把showmsg中的部分拿出来可以调用,但这样写就是报该物件不支持此属性或方法。求解functionshowmsg(){$(document).ready(functi...
想把showmsg中的部分拿出来可以调用,但这样写就是报该物件不支持此属性或方法。求解
function showmsg()
{
$(document).ready(function (){
htmlobj=$.ajax({url:"Sajax.aspx?id="+new Date()+"&server=showmsg",async:false});
$("#divmsg").html(htmlobj.responseText);
});
}
$(document).ready(function (){
$("#Bt5").click(function(){
// htmlobj=$.ajax({url:"Sajax.aspx?id="+new Date()+"&server=showmsg",async:false});
showmsg();
});
}); 展开
function showmsg()
{
$(document).ready(function (){
htmlobj=$.ajax({url:"Sajax.aspx?id="+new Date()+"&server=showmsg",async:false});
$("#divmsg").html(htmlobj.responseText);
});
}
$(document).ready(function (){
$("#Bt5").click(function(){
// htmlobj=$.ajax({url:"Sajax.aspx?id="+new Date()+"&server=showmsg",async:false});
showmsg();
});
}); 展开
2012-07-04
展开全部
就是啊,没必要在嵌套一次ready,在调用的时候已经ready了,或者代码完整点的
function showmsg() {
$.ajax({
type: "GET",
url: "Sajax.aspx?id=" + new Date() + "&server=showmsg",
global: false,
cache: false,
success: function (result) {
$("#divmsg").html(result);
}
});
}
function showmsg() {
$.ajax({
type: "GET",
url: "Sajax.aspx?id=" + new Date() + "&server=showmsg",
global: false,
cache: false,
success: function (result) {
$("#divmsg").html(result);
}
});
}
展开全部
你为什么要把
$(document).ready(function (){
这个写到
function showmsg()
这个里面呢?
$(document).ready(function (){
这个写到
function showmsg()
这个里面呢?
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
$(document).ready(function (){ 这玩意是dom load事件 这不是乱搞吗
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
$(document).ready(function ())在onload触发这个地方这样写是不合理的,不知道楼主的目的是什么,是不是想下个做一个封装,比如定义一个A 里面有多方法(a,b,c,d)然后 通过调用A.a就触发里面的a方法?
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询