如何禁用jquery选项卡加载
如何禁用加载选项卡功能?我需要禁用选项卡加载功能并启用保存按钮的单击。如何实现这一目标?
我的代码位于jsp中
<div id="tabs1" >
<ul>
<li><a href="#tabs1-1" id="tabs01">Incident Info</a></li>
<li><a href="#tabs1-2" id="tabs02">Incident Notes</a></li>
</ul>
<div id="tabs1-1">
<span>This is incident info</span>
</div>
<div id="tabs1-2">
<span>This is incident Note</span>
</div>
</div>
<script type="text/javascript">
$(document).ready(function () {
$('#tabs1-2').hide();
$('#tabs1-1').show();
$('#tabs1 ul li:first').addClass('active');
$('#tabs1 ul li a').click(function(){
$('#tabs1 ul li').removeClass('active');
$(this).parent().addClass('active');
var currentTab =jQuery(this).attr('href');
if(currentTab=="#tabs1-1"){
$('#tabs1-2').hide();
$('#tabs1-1').show();
}
else if(currentTab=="#tabs1-2"){
$('#tabs1-1').hide();
$('#tabs1-2').show();
}
return false;
});
});
</script>
,并通过保存按钮的onclick启用(位于js页面中)
function save(){
// here I need to enabled
}
我需要在加载时禁用选项卡,为此该怎么办?
how to disable the tab on load function ?. I need to disable tabs onload function and enabled onclick of save button. how to achieve this?
my code is in jsp
<div id="tabs1" >
<ul>
<li><a href="#tabs1-1" id="tabs01">Incident Info</a></li>
<li><a href="#tabs1-2" id="tabs02">Incident Notes</a></li>
</ul>
<div id="tabs1-1">
<span>This is incident info</span>
</div>
<div id="tabs1-2">
<span>This is incident Note</span>
</div>
</div>
<script type="text/javascript">
$(document).ready(function () {
$('#tabs1-2').hide();
$('#tabs1-1').show();
$('#tabs1 ul li:first').addClass('active');
$('#tabs1 ul li a').click(function(){
$('#tabs1 ul li').removeClass('active');
$(this).parent().addClass('active');
var currentTab =jQuery(this).attr('href');
if(currentTab=="#tabs1-1"){
$('#tabs1-2').hide();
$('#tabs1-1').show();
}
else if(currentTab=="#tabs1-2"){
$('#tabs1-1').hide();
$('#tabs1-2').show();
}
return false;
});
});
</script>
and enabled from onclick of save button (it is in js page)
function save(){
// here I need to enabled
}
I need tab disabled on load ,for this what to do?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用
disabled
选项:然后当你想启用选项卡时,使用 option 方法:
Use the
disabled
option:Then when you want to enable the tabs, use the option method: