Я пытаюсь создать кнопку, которая воспроизводит div с div, который имеет код, но использует href / link внутри, но, похоже, он не меняется. Я использую php, чтобы обе html страницы соединились в одну. Пожалуйста помоги. Мой код:
$(document.getId(SoldRecord)).ready(function() {
var selectedCountry = $(".SoldRecord").val();
$.ajax({
type: "POST",
url: "php-ECM-Store-SoldRecord.php",
data: {
country: selectedCountry
}
}).done(function(data) {
$("#response").html(data);
});
});
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/1.12.4/jquery.min.js"></script>
<div id="MyStore">
<div id="MyStore-Header">My Store</div>
<button class="SoldRecord"> Sold Record
<strong style="color:red; font-weight:600; padding-left: 4px;">(2)</strong>
</button>
<a href="php-ECM-Store-Offering.php" target="Store"> Offering
<strong style="color:red; font-weight:600; padding-left: 4px;">(3)</strong>
</a>
<a href="php-ECM-Store-Purchasing.php" target="Store"> Purchasing
<strong style="color:red; font-weight:600; padding-left: 4px;">(2)</strong>
</a>
<a href="php-ECM-Store-Pick&Pack.php" target="Store"> Pick&Pack
<strong style="color:red; font-weight:600; padding-left: 4px;">(3)</strong>
</a>
<a href="php-ECM-Store-Tracking.php" target="Store"> Tracking
<strong style="color:red; font-weight:600; padding-left: 4px;">(4)</strong>
</a>
<a href="php-ECM-Store-Rated.php" target="Store"> Rated
<strong style="color:red; font-weight:600; padding-left: 4px;">(2)</strong>
</a>
</div>
Другое html Страница: div
Я хочу воспроизвести со ссылкой.
<div id="response">
</div>