我今天第一次使用jquery,需要帮助解决这个问题。对于那里的所有专业人士来说,这个问题可能听起来很愚蠢,但我正在努力。
我在HTML页面中有一个表单字段,并希望从表单字段中获取值并与网址连接。
<form id="form-container" class="form-container">
<label for="street">Street: </label><input type="text" id="street" value="">
<label for="city">City: </label><input type="text" id="city" value="">
<button id="submit-btn">Submit</button>
</form>
这是我要添加街道和城市值的标签。
<img class="bgimg" src="https://maps.googleapis.com/maps/api/streetview?size=600x300&location=White House, Washington DC&key=API_KEY">
</body>
此src
中的位置字段基本上来自表单字段。所以像这样:
<img class="bgimg" src="https://maps.googleapis.com/maps/api/streetview?size=600x300&location=" + $('#street').val() + "," + $('#city').val()&key=API_KEY">
</body>
但不幸的是,这不起作用,需要一些指针来解决这个问题。
更新:我正在尝试这种方法来实现这一目标但不能正常工作
$body.append('<img class="bgimg" src="https://maps.googleapis.com/maps/api/streetview?size=600x300&location=" + $('#street').val() + " " + $('#city').val() + "&key=ABC">'
答案 0 :(得分:1)
您应该在表单提交时修改图片的src。 该线程的可能重复(您将在那里找到详细的答案):Changing the image source using jQuery
类似于:
- (void)methodX_deprecated {
[self methodX];
}
答案 1 :(得分:1)
如果你需要使用jQuery,那么设置img标签的'src'属性的值如下:
$('.bgimg').prop('src', '"https://maps.googleapis.com/maps/api/streetview?size=600x300&location=' + $('#street').val() + ',' + $('#city').val() + '&key=API_KEY')
答案 2 :(得分:1)
您可以这样做:
var url = "https://maps.googleapis.com/maps/api/streetview?size=600x300&location={street},{city}&key=API_KEY";
$("#submit-btn").on('click', function() {
var street = $('#street').val();
var city = $('#city').val();
var finalURL = url.replace('{street}', street).replace('{city}', city);
$('.bgimg').attr('src',finalURL);
});
请注意,您不应在src
中设置HTML
属性,否则浏览器会向无效来源发送请求。
还要确保验证用户输入和您的jQuery。