将背景图像 URL 更改为输入字段的值
我有一个输入元素、一个跨度和一个带有背景图像属性的 div。
<span>Go</span><input id="ImageUrl"/>
<div id="Image"></div>
我正在尝试创建一个脚本,如果用户将链接粘贴/键入到输入字段中,然后单击“Go”按钮,则 div 的背景图像属性将更改为该 url。
I have an input element, a span, and a div with a background image property.
<span>Go</span><input id="ImageUrl"/>
<div id="Image"></div>
I'm trying to create a script where if a user pastes/types a link into the input field, then clicks the Go button, the background image property for the div changes to that url.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
在<头> :
在<身体> :
如果有问题请告诉我:)
In < head> :
In < body> :
If you have problems please let me know :)
根据您的标记,如果您为
提供
id
为Btn
(为了具体起见),以下内容将起作用:演示:jsfiddle.net/mSAsU
Based on your markup, if you give the
<span>
anid
ofBtn
(for the sake of specificity), the following would work:Demo: jsfiddle.net/mSAsU
基本上你可以:
well basicly you can:
这应该可以很好地工作。请注意,您必须在 CSS 函数调用中包含
url()
部分。This should work nicely. Note you have to include the
url()
part in the CSS function call.