asp.net中使用jquery给按钮添加事件
javascript代码:$("#Button1").click(alert("hah"))$("#Text1").text("OPK")asp.net前台控件代码:<i...
javascript代码:
$("#Button1").click(alert("hah"))
$("#Text1").text("OPK")
asp.net前台控件代码:
<input id="Button1" type="button" value="button" />
<input id="Text1" type="text" value="aa" />
不知道是哪里写错了,为什么Text1的文本不变呢 展开
$("#Button1").click(alert("hah"))
$("#Text1").text("OPK")
asp.net前台控件代码:
<input id="Button1" type="button" value="button" />
<input id="Text1" type="text" value="aa" />
不知道是哪里写错了,为什么Text1的文本不变呢 展开
5个回答
展开全部
改成这样:
javascript代码:
$("#Button1").click(function(){
alert("hah");
});
$("#Text1").val("OPK")
asp.net前台控件代码:
<input id="Button1" type="button" value="button" />
<input id="Text1" type="text" value="aa" />
javascript代码:
$("#Button1").click(function(){
alert("hah");
});
$("#Text1").val("OPK")
asp.net前台控件代码:
<input id="Button1" type="button" value="button" />
<input id="Text1" type="text" value="aa" />
追问
但是为什么说“缺少对象 ”呢
参考资料: http://www.87cool.com/jQueryAPI/index.html
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
首先引用jquery文件
然后添加如下代码:
$(function () {
$("#Button1").click(function(){
$("#Text1").val("OPK");
});
});
然后添加如下代码:
$(function () {
$("#Button1").click(function(){
$("#Text1").val("OPK");
});
});
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
$("#Button1").click( function()
{
alert("hah");
});
{
alert("hah");
});
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
$("#Button1").click(function(){
$("#Text1").val("OPK")
});
$("#Text1").val("OPK")
});
追问
但是为什么说“缺少对象 ”呢
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
带有value属性的都得用 val("aaa") 来改变value的值
更多追问追答
追问
但是为什么说“缺少对象 ”呢
追答
$("#Button1").click(function(){
$("#Text1").val("OPK");
});
把你的源代码贴上来。
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询