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

为什么这样写没有效果

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

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

    <head>

        <title>使用serialize()方法序列化表单元素值</title>

        <script src="http://libs.baidu.com/jquery/1.9.0/jquery.js" type="text/javascript"></script>

        <link href="style.css" rel="stylesheet" type="text/css" />

    </head>

    

    <body>

        <div id="divtest">

            <div class="title">

                <span class="fl">我的个人资料</span> 

                <span class="fr">

                    <input id="btnAction" type="button" value="序列化" />

                </span>

            </div>

            <form action="">

            <ul>

                <li>姓名:<input name="Text1" type="text" size="12" /></li>

                <li>

                    <select name="Select1">

                        <option value="0">男</option>

                        <option value="1">女</option>

                    </select>

                </li>

                <li><input name="Checkbox1" type="checkbox" />资料是否可见 </li>

                <li id="litest"></li>

            </ul>

            </form>

        </div>

        

        <script type="text/javascript">

            $(function () {

                $("#btnAction").bind("click", function () {var node=document.createElement("li");

                node.innerHTML=$("form").serialize();

                    $("ul").appendChild(node);

                })

            })

        </script>

    </body>

</html>


正在回答

1 回答

$("ul").appendChild(node);同一个语句里jQuery与JavaScript语句混搭。

改为:$("ul").append(node);或:document.getElementsByTagName("ul")[0].appendChild(node);

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

慕粉3135539 提问者

非常感谢
2016-04-12 回复 有任何疑惑可以回复我~

举报

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

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

进入课程

为什么这样写没有效果

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