我有一个aspx页面上的按钮应该放在桌子上一个标准和其他它应该位于不同的div(我没有访问代码后面的代码添加)我所要做的只是javascript什么是移动按钮位置的最佳方式?
<div id= "main">
<table>
<tr><td id="loginsbtbtn"></td><tr>
<table>
<div id="cbtn">
<asp:Button ID="btnSubmit" BackColor="#b5c7de" runat="server" Text='continue' />
</div>
</div>
提前致谢
答案 0 :(得分:4)
使用jQuery,执行以下操作:
$('#myButton').appendTo('#someDiv');
没有jQuery,请执行以下操作:
document.getElementById('someDiv').appendChild(document.getElementById('myButton'));
这假定目标元素具有ID属性。无法在问题中提供任何HTML的确切解决方案。