如何动态调整输入标签的大小
我在输入标记内显示了一个动态链接。如何使输入标签调整大小以适应链接的宽度?
谢谢
I have a dynamic link displayed inside an input tag. How can I make the input tag resize to take the width of the link?
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以使用 body onload 来确定大小...
只需设置最小和最大大小即可保持页面样式...
You can use a body onload to determine the size....
jus tset your minimum and maximum size for maintaining page style....
也许您可以创建一个样式相同的隐藏
,然后读取其宽度(因为它会根据其内容进行调整)并将宽度分配给
。
Perhaps you can create a hidden
<span>
identically styled, then read its width (because it adjusts to its contents) and assign the width to the<input>
.