- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
我有一个固定的侧边栏,当它打开时,它会在整个页面上 float ,侧边栏具有固定的正文高度,侧边栏内的内容设置为 overflow-y: auto;
这样当内容超过侧边栏高度时,它会添加一个滚动条!
现在侧边栏中有一些字段需要在提交侧边栏表单时进行验证,由于滚动显示错误的字段可能会向上并且用户可能位于侧边栏的底部所以我需要添加一个 scrollTop
问题是当试图获取元素的位置时它总是返回相同的值,即使对于单独的字段也是如此,这是我的代码!
HTML
<form id="add_staff" method="post" action="{{url('saveStaff')}}" autocomplete="off">
<div class="changepicture_overlay_container changepicture_overlay_container1 changepicture_overlay_container_hidden">
<div class="changepicture">
<div class="wrapper">
<div class="sidebar-header">
<div class="float-left">
<i class="fas fa-user-plus"></i>
<h2>Add Staff</h2>
</div>
<div class="float-right">
<i class="fas fa-times"></i>
</div>
</div>
<div class="content">
<div class="status-float">
<div class="staff-checkbox inactive-box">
(In-Active)
</div>
<input type="checkbox" id="active" class="cbx hidden" name="status" value="1" />
<label for="active" class="lbl"></label>
</div>
<div class="sidebar-fields">
<div class="sidebar-fields-block">
<label for="name">Enter Full Name<span>*</span></label>
<input type="text" class="required_remove" id="name" name="name"/>
<p class="error">This Field is Required!</p>
</div>
<div class="sidebar-fields-block">
<label for="email">Enter Email<span>*</span></label>
<input type="text" class="required_remove" id="email" name="email"/>
<p class="error">This Field is Required!</p>
</div>
<div class="sidebar-fields-block">
<label for="password">Generate Password<span>*</span></label>
<input id="copied_link" class="required_remove" type="text" name="password"/>
<p class="error">This Field is Required!</p>
<i class="fas fa-undo fa-flip-horizontal generate-password"></i>
<i data-clipboard-action="copy" data-clipboard-target="#copied_link" class="far fa-copy clipboard"></i>
</div>
<div class="sidebar-fields-block">
<label for="phone">Enter Phone<span>*</span></label>
<input type="text" class="required_remove" id="phone" name="phone"/>
<p class="error">This Field is Required!</p>
</div>
<div class="sidebar-fields-block">
<label for="dob">Enter Date of Birth</label>
<input type="text" id="dob" name="DOB"/>
<p class="error">This Field is Required!</p>
<i class="fas fa-calendar-alt"></i>
</div>
<div class="sidebar-fields-block">
<label for="gender">Enter Gender</label>
<select id="gender" name="gender">
<option value="1">Male</option>
<option value="2">Female</option>
</select>
<i class="fas fa-caret-down"></i>
</div>
<div class="sidebar-fields-block">
<label for="staff">Enter Staff Department</label>
<select id="staff" name="department_id">
</select>
<i class="fas fa-caret-down"></i>
</div>
<div class="sidebar-fields-block">
<label for="lang0">Enter Primary language</label>
<input type="text" name="language[]"/>
</div>
<div class="append-language">
</div>
<div class="addmore">
<i class="fas fa-plus"></i>
<a>Add</a>
</div>
</div>
<div class="admin-staff">
<div class="checkbox-sidebar">
<input type="checkbox" id="Admin" class="cbx hidden" name="role" value="Admin"/>
<label for="Admin" class="lbl"></label>
<span>Admin</span>
</div>
<div class="checkbox-sidebar">
<input type="checkbox" id="Staff" class="cbx hidden" name="role" value="Staff"/>
<label for="Staff" class="lbl"></label>
<span>Staff</span>
</div>
</div>
</div>
<div class="sidebar-footer">
<div class="btn-box">
<a class="back"><i class="fas fa-chevron-left"></i>BACK</a>
<button type="submit">Create</button>
<a class="cancel">Cancel</a>
</div>
</div>
</div>
</div>
<div class="overlay"></div>
</div>
</form>
CSS
.changepicture_overlay_container {
transition: right 0.3s ease;
width: 0;
height: 0;
}
.changepicture_overlay_container_hidden .changepicture{
width: 580px;
height: 100%;
background: white;
position: fixed;
right: -580px;
transition: right 0.3s ease;
top: 0;
border-left: 1px solid #808896;
overflow-y: auto;
}
.changepicture_overlay_container_visible .content{
padding-top: 90px;
padding-bottom: 140px;
padding-left: 40px;
padding-right: 40px;
}
.changepicture_overlay_container2 .content{
padding-top: 140px;
padding-bottom: 250px;
}
.changepicture_overlay_container_visible .changepicture, .changepicture_overlay_container .overlay{
right: 0px;
transition: right 0.3s ease;
z-index: 1000;
min-height:100%;
}
.changepicture_overlay_container_visible .overlay {
width: calc(100% - 580px);
position: fixed;
height: 100%;
background: rgba(209,212,217, 0.9);
right: 580px;
transition: right 0.3s ease;
z-index: 10000;
top: 0;
}
JQuery
$("#add_staff").submit(function(event){
event.preventDefault();
$flag=true;
if(!$("#name").val()){
$("#name").next("p.error").show();
$("#name").addClass("border-error");
taketotop($("#name"));
$flag=false;
}
if(!$("#email").val()){
$("#email").next("p.error").show();
$("#email").addClass("border-error");
taketotop($("#email"));
$flag=false;
}
if($("#email").val() && !validateEmail($("#email").val())){
$("#email").next("p.error").html("Please Enter Correct Email");
$("#email").next("p.error").show();
$("#email").addClass("border-error");
$flag=false;
}
if(!$("#copied_link").val()){
$("#copied_link").next("p.error").show();
$("#copied_link").addClass("border-error");
$flag=false;
}
if(!$("#phone").val()){
$("#phone").next("p.error").show();
$("#phone").addClass("border-error");
$flag=false;
}
if($flag){
$object = {
"_token": $('.getCsrfToken').val(),
"email": $("#email").val()
};
$.ajax({
type: 'post',
url: "{{url('car_get_with_stock_number_leads_full_data')}}",
data:$object,
beforeSend: function () {
loader_start();
},
success: function (data) {
loader_end();
//below line goes for if email exist
$("#email").next("p.error").html("Email Already Exist!");
$("#email").next("p.error").show();
$("#email").addClass("border-error");
//below line goes for if email exist
//else
//$("#add_staff")[0].submit();
//else
}
});
}
});
function taketotop($element){
alert($element.position().top);
// $('#sidebar_0 .changepicture_overlay_container .changepicture').animate({
// scrollTop: $("#sidebar_0 "+$element.trim()+"").position().top
// }, 'slow');
}
上面的函数是出现问题的地方我已经提醒名称和电子邮件字段的位置顶部但它总是返回相同的值,即 22,我不知道有什么问题有帮助吗?
最佳答案
.position()获取元素相对于其父元素 的位置。尝试 .offset()相反,或者,如果不可能,请尝试获取父位置(和/或父的父)。
编辑:正如其他人在评论中所说,没有易于测试的代码片段很难确定,但它应该看起来像这样:
$('.content').position().top+
$('.sidebar-fields').position().top+
$element.closest('.sidebar-fields-block').position().top
而且它应该返回一些您不能使用的东西。有很多方法可以改进它(一些循环,添加或删除一些元素位置),但它是我能给出的最准确的答案。
在 JSFiddle 和一些摆弄之后进行编辑:开始吧!
$('.changepicture').scrollTop($('.changepicture').scrollTop()+$element.offset().top);
有了它,您可以根据实际滚动调整您的定位。更健壮!仍然要注意多次调用函数 taketotop
,因为它会在用户看到之前移动滚动条。例如,您可以在此处添加一些条件:
$("#email").addClass("border-error");
if($flag)taketotop($("#email"));
如果已经由名称错误触发,那么 taketotop
将不会被调用两次。
关于jquery - position top inside position fixed div 总是为每个元素返回相同的值jquery,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52165946/
在带有 jQuery 的 CoffeeScript 中,以下语句有什么区别吗? jQuery ($) -> jQuery -> $ - > 最佳答案 第一个与其他两个不同,就像在纯 JavaScr
已关闭。这个问题是 off-topic 。目前不接受答案。 想要改进这个问题吗? Update the question所以它是on-topic用于堆栈溢出。 已关闭13 年前。 Improve th
就目前情况而言,这个问题不太适合我们的问答形式。我们希望答案得到事实、引用资料或专业知识的支持,但这个问题可能会引发辩论、争论、民意调查或扩展讨论。如果您觉得这个问题可以改进并可能重新开放,visit
这个问题可能听起来很愚蠢,但请耐心等待,因为我完全是初学者。我下载了两个 jQuery 版本,开发版本和生产版本。我想知道作为学习 jQuery 的初学者,什么更适合我。 最佳答案 如果您对 jQue
The documentation说要使用 1.6.4,但我们现在已经升级到 1.7.2。 我可以在 jQuery Mobile 中使用最新版本的 jQuery 吗? 最佳答案 您当然可以,但如果您想
我在这里看到这个不错的 jquery 插件:prettyphoto jquery lightbox有没有办法只用一个简单的jquery来实现这样的效果。 我只需要弹出和内联内容。你的回复有很大帮助。
很明显我正在尝试做一些 jQuery 不喜欢的事情。 我正在使用 javascript 上传图片。每次上传图片时,我都希望它可见,并附加一个有效的删除脚本。显示工作正常,删除则不然,因为当我用 fir
这两个哪个是正确的? jQuery('someclass').click(function() { alert("I've been clicked!"); }); 或 jQuery('somec
我正在寻找一个具有以下格式的插件 if (jQuery)(function ($) { -- plugin code -- })(jQuery); 我明白 (function ($)
关闭。这个问题是opinion-based 。目前不接受答案。 想要改进这个问题吗?更新问题,以便 editing this post 可以用事实和引文来回答它。 . 已关闭10 年前。 Improv
我知道这个问题已经被问过几次了,但想知道您是否可以帮助我解决这个问题。 背景:我尝试创建一个使用 Ajax 提交的表单(jQuery 表单提交)。我已经工作得很好,然后我想在表单上得到验证。我可以使用
我正在使用无处不在的jquery validate plugin用于表单验证。它支持使用metadata plugin用于向表单元素添加验证规则。 我正在使用此功能。当验证查找这些规则时,它会对元素进
我更喜欢为我一直在开发的网络社区添加实用的视觉效果,但随着事情开始堆积,我担心加载时间。 拥有用户真的更快吗加载(希望是缓存的)副本来自 Google 存储库的 jquery? 是否使用 jQuery
这个问题已经有答案了: Slide right to left? (17 个回答) 已关闭 9 年前。 你能告诉我有没有办法在 jQuery 中左右滑动而不使用 jQuery UI 和 jQuery
我如何找出最适合某种情况的方法?任何人都可以提供一些示例来了解功能和性能方面的差异吗? 最佳答案 XMLHttpRequest 是原始浏览器对象,jQuery 将其包装成一种更有用和简化的形式以及跨浏
运行时 php bin/console oro:assets:build ,我有 11 个这样的错误: ERROR in ../node_modules/jquery-form/src/jquery.
我试图找到 jQuery.ajax() 在源代码中的定义位置。但是,使用 grep 似乎不起作用。 在哪里? 谢谢。 > grep jQuery.ajax src/* src/ajax.js:// B
$.fn.sortByDepth = function() { var ar = []; var result = $([]); $(this).each(function()
我的页面上有多个图像。为了检测损坏的图像,我使用了在 SO 上找到的这个。 $('.imgRot').one('error',function(){ $(this).attr('src','b
我在理解 $ 符号作为 jQuery 函数的别名时遇到了一些麻烦,尤其是在插件中。你能解释一下 jQuery 如何实现这种别名:它如何定义 '$' 作为 jQuery 函数的别名?这是第一个问题。 其
我是一名优秀的程序员,十分优秀!