如何使用jquery-ui拖动红色div中的蓝色表单
这是我的代码:
<div id="test" style="width:200px;height:100px;background:red" class="tabs change_font_size">
<div>
<a class="delete" style="float:right;font-size:20px;text-decoration:underline;cursor:pointer;">delete</a>
<form action="/" style="background:blue">
<input type="text" name="text"/>
<input type="submit" value="submit"/>
</form>
</div>
</div>
$('#test').draggable()
您可以在此 http://jsfiddle.net/8vntr/1/< 中运行此代码/a>
我可以拖动红色 div,但无法拖动蓝色表单,
我该怎么办?
谢谢
this is my code :
<div id="test" style="width:200px;height:100px;background:red" class="tabs change_font_size">
<div>
<a class="delete" style="float:right;font-size:20px;text-decoration:underline;cursor:pointer;">delete</a>
<form action="/" style="background:blue">
<input type="text" name="text"/>
<input type="submit" value="submit"/>
</form>
</div>
</div>
$('#test').draggable()
you can run this code in this http://jsfiddle.net/8vntr/1/
i can drag the red div, but i can't drag the blue form ,
what can i do ?
thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
将表单标签放在可拖动 div 之外似乎可行。
Putting the form tag outside the draggable div seems to work.
将表单高度和宽度设置为 0 :
set the form height and width to 0 :