大家好,我有这个脚本
<a class="clickMe" toggle="first">Text 1</a>
</br>
<div id="first" class="text"> - This text will be toggled</div>
<a class="clickMe" toggle="second">Text 2</a>
</br>
<div id="second" class="text"> - This text will be toggled 2</div>
和jQuery
$('a.clickMe').click(function () {
id = $(this).attr('toggle');
$('.text').not('#' + id).hide();
$('#' + id).show();
});
上面的代码通过切换This text will be toggled
或This text will be toggled 2
当我们点击Text 1
或被Text 2
点击时可以正常工作,请查看演示
但现在我要做的是为切换的文本设置固定的位置/对齐方式,现在它在文本 1 或文本 2 下方切换,但我需要把它放在右侧,这样当任何一个 TEXT1 或TEXT2 被点击切换声明应该显示在同一个地方(右侧不在下方)...请帮我解决这个问题....