为了账号安全,请及时绑定邮箱和手机立即绑定

怎么这个序列号不变的

<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="WebForm45.aspx.cs" Inherits="WebApplication2.WebForm45" %>


<!DOCTYPE html>


<html xmlns="http://www.w3.org/1999/xhtml">

<head runat="server">

<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>

    <title></title>

    <script type="text/javascript"  src="jquery-2.1.4.min.js"> </script>

</head>

<body>

    <input type="button" value="序列号" id="tb" />

    <form id="form1" runat="server">

    <div>

    <input type="text" />


        <span></span>

        <script type="text/javascript">

            $(function () {

                $("#tb").bind("click", function () {

                    $("span").html($("form").serialize());

                });

            });

        </script>

    </div>

    </form>

</body>

</html>


正在回答

1 回答

把input放到form中 再给上name属性就好了~

<body>

    

    <form id="form1" runat="server">

    <div>

    <input type="text" name="text"/>

   <input type="button" value="序列号" id="tb" />

    <span></span>

    </div>

    </form>

</body>

 <script type="text/javascript">

            $(function () {

                $("#tb").bind("click", function () {

                    $("span").html($("form").serialize());

                });

            });

        </script>



0 回复 有任何疑惑可以回复我~

举报

0/150
提交
取消
jQuery基础课程
  • 参与学习       154768    人
  • 解答问题       7184    个

加入课程学习,有效提高前端开发速度

进入课程

怎么这个序列号不变的

我要回答 关注问题
意见反馈 帮助中心 APP下载
官方微信