gpt4 book ai didi

javascript - 按钮单击在 jquery 中不起作用

转载 作者:行者123 更新时间:2023-11-28 03:56:02 25 4
gpt4 key购买 nike

大家好,我是 jquery 的新手。

我正在尝试在 jquery 中进行简单的添加。我有两个输入字段,在 jquery 中我想在这些字段中添加数字。但是添加按钮没有触发。

JQuery

<script type="text/javascript">
$(document).ready(function () {
//toggle div start
$("#btn_do").click(function () {
$(".div_chat").animate({
width: "toggle"
});
});
// toggle div end

//Add button click
$("btnplus").click(function () {
alert("sdfdf");
var val1 = $("#lblvalue1").val();
var val2 = $("#lblvalue2").val();
var added = parseInt( val1 )+ parseInt( val2);
alert(added2);
$("lbltext").val(added);
});
//add button click end

});
</script>

HTML

 <form id="form1" runat="server">
<noscript>
<div>
You must enable javascript to continue.
</div>
</noscript>
<div>
<asp:Label ID="lblLabel" runat="server"></asp:Label>
<button id="btn_do" type="button">toggle</button>
</div>
<div></div>
<div id="divchatID" class="div_chat" style="height: 500px; width: 500px; background-color: #82adf2; display: none; padding:5px;">
<label id="lblvalue1">Value 1</label>
<input id="value1" type="text" onkeypress='return event.charCode >= 48 && event.charCode <= 57' />
<br />
<label id="lblvalue2">Value 2</label>
<input id="value2" type="text" onkeypress='return event.charCode >= 48 && event.charCode <= 57' />
<button id="btnplus" type="button" > ADD</button>
<br />
<asp:Label ID="lbltext" runat="server">tesst</asp:Label>
</div>
</form>

有人吗?提前致谢。

最佳答案

您在代码中忘记了 #。试试这个:

$("#btnplus").click(function () {
alert("sdfdf");
var val1 = $("#lblvalue1").val();
var val2 = $("#lblvalue2").val();
var added = parseInt( val1 )+ parseInt( val2);
alert(added);
$("#lbltext").val(added);
});

关于javascript - 按钮单击在 jquery 中不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42502256/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com