开发者

change style of div after dragdrop

开发者 https://www.devze.com 2023-01-26 16:28 出处:网络
I have a div and a button. After drag&drop this div object to other position. I want that when I click button, that div object will change 开发者_开发技巧style with new position has just changed.

I have a div and a button. After drag&drop this div object to other position. I want that when I click button, that div object will change 开发者_开发技巧style with new position has just changed.

Div object change postion:

div id="divml5" class="dragDiv1" runat="server" style="width:40px;height:40px;

position:relative; left:120px;top:60px;">**
    'table> 
       **tr>
            td>
                h5 id="h5ml5" class="handler" runat="server" 
                        style="background-image:url('../../Images/image.jpg'); 
                                vertical-align:middle;width:40px; height:40px;background-repeat:no-repeat;"></h5>
            /td>
        /tr>**
    /table>
/div>"

Button

button type="button" id="btn" runat="server" onclick="changeStyle();">ChangeStyle

and I have paragrahp code to process change style of that div object:

var divml5 = document.getElementById("divml5"); var h5ml5 = document.getElementById("h5ml5");

    function changeStyle(){
        h5ml5.style.backgroundImage = "url('../Images/clientRed.jpg')";
    }

I think I can implement as I want, but it can't process.


If I understand ur question correctly.

I would suggest you do it in 2 steps:

1, define your new style into a Css class

2, use jQuery AddClass('ur_class_name') on .click()

0

精彩评论

暂无评论...
验证码 换一张
取 消