基本的に、HTMLフォームを含むモーダルをトリガーするWebページがあります。このフォームにはhref値で制御できるタブがありますが、アンカーリンクをクリックすると親ページに影響しますが、モーダルフォームには影響しません。通常、フォームがモーダルではなく、HTML ページに直接実装されている場合、href リンクはフォームのタブを移動するように機能します。ただし、フォームを別のページからモーダルにすると、この問題が発生します。解決策またはJavaScriptの回避策はありますか? これがモーダル内のフォームです
<div class="tab-content ">
<div class="tab-pane active" id="panel6-1">
<div class="row-fluid">
<div class="span5"> <h4><i class="icon-user"></i> Property Details</h4>
<label>Selected Address : </label>
<input type="text" value="<?php $result = getAdressFromLatLng($_GET["lat"],$_GET["lng"]); echo $result->address; ?>" class="input-block-level" />
<label>Property Type </label>
<select>
<option id="">Residential</option>
</select>
<label>Property Subtype </label>
<select>
<option id="">Residential</option>
</select>
<label>
<button type="button" data-toggle="button" class="btn btn-mini custom-checkbox active"><i class="icon-ok"></i></button>
</label>
<br />
//here is the href that when I click on I want to show the panel6-2
<a href="#panel6-2" ">Go to next tab<i class="icon-chevron-sign-right"></i></a>
</div>