Влад137,
<!DOCTYPE html>
<html>
<head>
<title>Untitled</title>
<meta charset="utf-8">
<style type="text/css">
</style>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js"></script>
<script>
$(function() {
var Store = {
str1: ['1','Ноутбук Lenovo', 'Ноутбук ThinkPad T460 14"FHD(1920x1080),i5-6200U(2,3GHz),4Gb,500GB@5400+8Gb cache, HD Graphics 520, WiFi,BT,TPM,FPR,WWAN ready,3cell+3cell,Cam,Win7 Pro 64 + Win10 Pro upgrade coupon,1,7kg, 3y OS', '100','2'],
str2: ['2', 'Клавиатура OKLICK', 'Клавиатура OKLICK 140M, USB, черный', '50', '8'],
str3: ['3', 'Сетевой адаптер', 'Сетевой адаптер WiFi D-Link DWA-582 DWA-582/RU', '7', '0']
}
var tbody = $("#myTable tbody");
Object.keys(Store).forEach(function(key) {
var tds = Store[key];
var tr = $("<tr/>").appendTo(tbody);
tds.forEach(function(text, i) {
var obj = {
text: text
};
if (i == 1) obj = {
html: $("<a/>", {
href: text+".html",
text: text
})
};
var td = $("<td/>", obj).appendTo(tr)
})
});
});
</script>
</head>
<body> <a href=""></a>
<table id="myTable" border="1" cellpadding="10" cellspacing="0">
<tr>
<th id="ID">ID</th>
<th id="idPdt">Имя</th>
<th id="pdtDescriprion">Описание</th>
<th id="pdtPrice">Цена</th>
<th id="pdtQuantity">Количество</th>
</tr>
</table>
</body>
</html>