1
他のアンカーリンクをクリックしながら、非表示のdiv要素内のアンカー要素にフォーカスを設定しようとしています。私は.focus()、.focusin()のようないくつかのオプションを試しました。しかし、何も働いていません。showの後にdiv内のアンカーにフォーカスを設定しますか?
マイコード:
<script>
$(document).ready(function(){
$("#clickShow").on('click', function(){
$("#showDescription").show();
$("#showDescription").find("a").focus();
});
});
</script>
<div>
<a href="#" id="clickShow">View Hidden Text</a>
</div>
<div id="showDescription" style="display:none;">Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap <a href="#">Link Text</a> into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.</div>
私はそれを成し遂げるためにここに行方不明です何を、ということを知りたいと思いましたか?
あなたの尊敬すべき助けを感謝します。
私のアプリケーションでありますjQuery 1.11.1のバージョン。これを機能的なものにするために達成する可能性はありますか? – Maniram
1.11.1でも試してみました...その作業...おそらくあなたの問題は他にもあります – kukkuz