jquery:点击一个选项之后,总是排在第一个,然后剩下的选项以前排序保持不变。的代码怎么写 10

 我来答
136775565
2016-07-23 · TA获得超过1113个赞
知道小有建树答主
回答量:866
采纳率:88%
帮助的人:829万
展开全部
<script>
    $(function(){
        $("#butn").on("click","input",function(){
            $(this).prependTo($("#butn"));
        })
    })
</script>
<body>
<div id="butn">
    <input type="button" value="全部"/>
    <input type="button" value="7`9岁"/>
    <input type="button" value="10`14岁"/>
    <input type="button" value="绘本类"/>
    <input type="button" value="幼儿启蒙"/>
    <input type="button" value="科普百科"/>
    <input type="button" value="卡通动漫"/>
    <input type="button" value="儿童文学"/>
</div>
阿囧__
2018-07-26
知道答主
回答量:2
采纳率:0%
帮助的人:2166
展开全部
<html>
<head>
<style>
.aa input{margin-right:10px;}
</style>
<script type="text/javascript" src="/jquery/jquery.js"></script>
</head>
<body>
<div class="aa" id="butn">
<input type="button" value="全部" onclick="aa(this)"/>
<input type="button" value="7`9岁" onclick="aa(this)"/>
<input type="button" value="10`14岁" onclick="aa(this)"/>
<input type="button" value="绘本类" onclick="aa(this)"/>
<input type="button" value="幼儿启蒙" onclick="aa(this)"/>
<input type="button" value="科普百科" onclick="aa(this)"/>
<input type="button" value="卡通动漫" onclick="aa(this)"/>
<input type="button" value="儿童文学" onclick="aa(this)"/>
</div>
<script type="text/javascript">
function aa(obj){
var input = $(obj).prop("outerHTML");
console.log(input);
$(obj).remove();
$(input).prependTo('#butn');
}
</script>
</body>
</html>
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式