gpt4 book ai didi

javascript - 不兼容的 html 页面中的 TabIndex 控件

转载 作者:行者123 更新时间:2023-11-28 02:54:01 26 4
gpt4 key购买 nike

我有一个 html 页面,我无法在其中放置 DOCTYPE(我不允许这样做)。另外,我需要让它在 IE 8 上运行!然后是一个复选框+标签的东西。例如,这个:

    <input id="daffodils" type="checkbox" title="daffodil factsheet" name="daffodils" value="checkbox" tabindex=2>
<label for="daffodils">Daffodils</label>
<input id="tulips" type="checkbox" title="tulip factsheet" name="tulips" value="checkbox" tabindex=3>
<label for="tulips">Tulips</label>

我的问题:我想在按 Tab 键时突出显示复选框,但使用此代码时,只有标签会突出显示。我尝试使用 TabIndex。但这没有帮助。当然,可以选中/取消选中该复选框,但我希望突出显示该复选框。 (突出显示 - 我的意思是..物体周围的虚线方 block )

谢谢。

最佳答案

这不太漂亮,但可能对你有用:

<html>
<head>
<title>Whatever</title>

<script type="text/javascript">
function focusThis(This) {
This.className='focus';
}

function blurThis(This) {
This.className='blur';
}
</script>

<style type="text/css">
.focus {
border: 1px dotted black;
}

.blur {
border: 1px solid white;
}
</style>
</head>
<body>
<input id="daffodils" onfocus="focusThis(this);" onblur="blurThis(this);" type="checkbox" title="daffodil factsheet" name="daffodils" value="checkbox" tabindex=2>
<label for="daffodils">Daffodils</label>
<input id="tulips" onfocus="focusThis(this);" onblur="blurThis(this);" type="checkbox" title="tulip factsheet" name="tulips" value="checkbox" tabindex=3>
<label for="tulips">Tulips</label>
</body>
</html>

注意 onfocusonblur输入框上的事件。

编辑:

如果您愿意使用 jQuery 库,您可以轻松摆脱 onfocusonblur只需添加和删除 focus 即可在输入标签内发生事件类:

<html>
<head>
<title>Whatever</title>

<script type="text/javascript" src="jquery.min.js"></script>

<script type="text/javascript">
$(document).ready(function(){
$('input').focus(function(){
$(this).addClass('focus');
}).blur(function(){
$(this).removeClass('focus');
});
});
</script>

<style type="text/css">
.focus {
border: 1px dotted black;
}
</style>
</head>
<body>
<input id="daffodils" type="checkbox" title="daffodil factsheet" name="daffodils" value="checkbox" tabindex=2>
<label for="daffodils">Daffodils</label>
<input id="tulips" type="checkbox" title="tulip factsheet" name="tulips" value="checkbox" tabindex=3>
<label for="tulips">Tulips</label>
</body>
</html>

我确信有人可以编写 JS 代码来执行相同的操作,但我更喜欢 jQuery。

关于javascript - 不兼容的 html 页面中的 TabIndex 控件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3122150/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com