admin管理员组文章数量:1345284
I have structure like each image has input below. I have x images on the screen. Each of image has onlick option
onclick="imageClicked(this)"
Function creates border to image and show collapsed input. Image`s border is showing but input is not beign visible.
Here`s the function
function imageClicked(image) {
var input = $(image).closest("input");
$(image).css('outline', "solid 2px #5bc0de");
$(input).css("visibility", "visible");
$(input).focus();
$(input).focusout(function () {
$(image).css('outline', "0");
if ($(input).val() === "0") {
$(input).css("visibility", "collapse");
}
});
$(image).focusout(function () {
if ($(input).val() === "") {
$(image).css('outline', "0");
}
});
}
Here is HTML Structure in Razor View
@for (int i = 0; i < Model.Boxes.Count; i++){
var base64 = Convert.ToBase64String(Model.Boxes[i].Photo);
var imgSrc = String.Format("data:image/gif;base64,{0}", base64);
var imageId = Model.Boxes[i].BoxId;
@Html.HiddenFor(m => m.Boxes[i].BoxId)
<div class="col-md-2">
<img src="@imgSrc" width="50%" alt="@Model.Boxes[i].Name" id="@string.Format("image{0}", imageId)" onclick="imageClicked(this)" />
@Html.TextBoxFor(m => m.Boxes[i].Quantity, new { @class = "form-control", @style = "visibility: collapse; width: 50%; margin-top: 1%", @id = string.Format("input{0}", imageId) })
</div>
}
I have structure like each image has input below. I have x images on the screen. Each of image has onlick option
onclick="imageClicked(this)"
Function creates border to image and show collapsed input. Image`s border is showing but input is not beign visible.
Here`s the function
function imageClicked(image) {
var input = $(image).closest("input");
$(image).css('outline', "solid 2px #5bc0de");
$(input).css("visibility", "visible");
$(input).focus();
$(input).focusout(function () {
$(image).css('outline', "0");
if ($(input).val() === "0") {
$(input).css("visibility", "collapse");
}
});
$(image).focusout(function () {
if ($(input).val() === "") {
$(image).css('outline', "0");
}
});
}
Here is HTML Structure in Razor View
@for (int i = 0; i < Model.Boxes.Count; i++){
var base64 = Convert.ToBase64String(Model.Boxes[i].Photo);
var imgSrc = String.Format("data:image/gif;base64,{0}", base64);
var imageId = Model.Boxes[i].BoxId;
@Html.HiddenFor(m => m.Boxes[i].BoxId)
<div class="col-md-2">
<img src="@imgSrc" width="50%" alt="@Model.Boxes[i].Name" id="@string.Format("image{0}", imageId)" onclick="imageClicked(this)" />
@Html.TextBoxFor(m => m.Boxes[i].Quantity, new { @class = "form-control", @style = "visibility: collapse; width: 50%; margin-top: 1%", @id = string.Format("input{0}", imageId) })
</div>
}
Share
Improve this question
edited Jun 2, 2016 at 14:52
Mohammad
21.5k16 gold badges56 silver badges84 bronze badges
asked Jun 2, 2016 at 13:58
miechooymiechooy
3,42212 gold badges40 silver badges66 bronze badges
2
- 1 need the html structure as well.. – Anoop Joshi P Commented Jun 2, 2016 at 13:59
-
1
$(image).closest("input");
butclosest()
is looking for ancestor and because aninput
is void element, it cannot have any descendant... – A. Wolff Commented Jun 2, 2016 at 14:01
1 Answer
Reset to default 8Closest will search for the parent elements. Here the input is not the parent element of the image. Its a sibling only. You can use siblings() selector for this purpose.
var input = $(image).siblings("input");
Or you can use,
var input = $(image).closest(".col-md-2").find("input");
- Get the parent div(since the image and input are under same parent)
- Then find the child input of that parent
本文标签: javascriptjQuery Find Closest InputStack Overflow
版权声明:本文标题:javascript - jQuery Find Closest Input - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743809522a2542806.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论