美文网首页
前端:note

前端:note

作者: 慢半帧 | 来源:发表于2019-01-04 22:47 被阅读0次
    清空指定td中的内容:
    $("tr:eq("+i+")").children().eq(6).empty()
    
    追加内容在指定td中
    $("tr:eq("+i+")").children().eq(6).append("<div class=\"textarea\" id=\"yiwen_show{{y.id}}\" contenteditable=\"true' >\"+data.msg+"</div>")
    
    通过JS跳转链接
    //以下方式直接跳转
        $("#update").click(function () {
            window.location.href='/work/update/';
        })
    

    相关文章

      网友评论

          本文标题:前端:note

          本文链接:https://www.haomeiwen.com/subject/byjlrqtx.html