码迷,mamicode.com
首页 > Windows程序 > 详细

windows live writer 测试

时间:2014-10-08 16:53:15      阅读:253      评论:0      收藏:0      [点我收藏+]

标签:style   blog   http   color   io   os   ar   for   sp   

这是一个一篇测试日志!

Technorati 标记:

<a onClick="alert();">text</a>
$(document).ready(function() {
    //鼠标移到新增消息层绑定事件
    $("#messageListDiv").delegate(".singleMessageDiv,.multiMsgDiv", "mouseover",
    function() {
        var className = this.className;
        var arrivalOffset = $(this).offset();
        $("#mouseoverDiv").css({
            height: $(this).outerHeight(),
            width: $(this).outerWidth() + "px",
            left: arrivalOffset.left + "px",
            top: arrivalOffset.top + "px",
        }).css("z-index", "2").show();
        $("#currentDivID").val($(this).attr("id"));
    });
    //鼠标移出填出层事件
    $("#mouseoverDiv").mouseout(function() {
        hideMouseoverDiv();
    });
    //隐藏弹出层事件
    function hideMouseoverDiv() {
        if ($("#mouseoverDiv")) $("#mouseoverDiv").hide();
    }
    //图文消息编辑
    $("#edit_").click(function() {
        var currentDivID = $("#currentDivID").val();
        var appMessageType = $("#" + currentDivID + " .appMessageType").val();
        window.location.href = "<%=utb.getURL("wxAppMessageModify.do ") %>&appMessageId=" + currentDivID + "&appMessageType=" + appMessageType + "&platformFakeId=<%=platformFakeId %>";
    });
    //图文消息删除
    $("#remove_").click(function() {
        sendAjaxRequest("post", "<%=utb.getURL("wxAppMessageDeleteBefore.do ")%>", "platformFakeId=<%=platformFakeId%>&appMessageId=" + $("#currentDivID").val(),
        function(data) {
            var count = data.count;
            if (count > 0) {
                alert("本图文已被选择,请解除后再删除。");
                return;
            } else {
                document.messageDeleteForm.appMessageId.value = $("#currentDivID").val();
                if (confirm("此操作不可恢复,确认删除此图文消息?")) {
                    window.ly.style.display = "block";
                    window.ly.style.width = window.screen.availWidth * 68.6 / 100;
                    window.ly.style.height = document.body.scrollHeight * 100 / 85;
                    deleteAuth.checkAuth();
                }
            }
        });
    });
});

windows live writer 测试

标签:style   blog   http   color   io   os   ar   for   sp   

原文地址:http://www.cnblogs.com/ddsh/p/4011246.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!