articleMark.html 966 Bytes
<!DOCTYPE html>
<div id="tt" class="easyui-layout" fit="true" style="overflow-y: scroll">
    <form name="articleMarkForm" id="articleMarkForm" method="post">
        <div style="margin-top: 20px;margin-left: 30px">
            <table border="0" style="width:95%;margin-top:5px;line-height:30px;" id="tab">
                <tr style="height: 60px">
                    <td>
                        达人搭配:<input type="checkbox"  id = "box1"/>
                    </td>
                    <td>
                        发现好货:<input type="checkbox"  id = "box2"/>
                    </td>
                </tr>
            </table>
        </div>
    </form>

</div>


<script>

    $(function () {

        var data = paramObject.mkData;
        if(data.markFlag == '1'){
            $("#box1").attr("checked",true);
        }

        if(data.markFindgoods == '1'){
            $("#box2").attr("checked",true);
        }

    });


</script>

</html>