也许我没有使用正确的单词,因为我是全新的bootstrap,但我无法做到这一点......我有一个带有此代码的html文档:
<div class="item" id="screen_1_1">
<h2>1. Title</h2>
<h3>Definition</h3>
<p>content</p>
</div>
<div class="item" id="screen_1_2">
<h2>2. Title</h2>
<h3>Definition</h3>
<p>content</p>
</div>
所以,我想问一下,如何从其他网站链接到这个网站并直接打开它,例如,看到第二张幻灯片?这可能吗?
答案 0 :(得分:0)
试试这个
<!-- first slide -->
<div class="item" id="screen_1_1">
<h2>1. Title</h2>
<h3>Definition</h3>
<p>content</p>
</div>
<!-- second slide -->
<div class="item" id="screen_1_2" onClick="javascript:location.href='http://www.google.it/'">
<h2>2. Title</h2>
<h3>Definition</h3>
<p>content</p>
</div>