wb.Navigate(".\index.html")
(или какой там у вас путь)var books = [];
var book1 = {};
book1.title = "My Book";
book1.pubYear = 1986;
book1.price = "50 UAH"
var book2 = {};
book2.title = "My Book 2";
book2.pubYear = 2012;
book2.price = "170 UAH"
books.push(book1);
books.push(book2);
//или for или books.forEach
for(var i=0; i<books.length; i++) {
var y = books[i];
console.log(y.title);
}
больше в сфере экономики и бухгалтерии.
<form id="main">
<input id="first" type="text" />
<input id="second" type="text" />
<input id="btn" type="button" value="Go head" />
</form>
<table>
<thead>
<th>One</th>
<th>Two</th>
</thead>
<tbody id="tbl">
<td>1</td>
<td>2</td>
</tbody>
</table>
$("#btn").on("click", function() {
var newRow =
"<tr><td>" +
$("#first").val() +
"</td><td>" +
$("#second").val() +
"</td></tr>"
$("#tbl").append($(newRow))
});
//берете нужный инпут (тут взят [7] для простоты) и запоминаете его значение
var currentVal = $("input").eq(7).attr("placeholder");
//потом магия по добавлению к currentVal единицы.
//Эту функцию придется определить, т.к. там строка типа "c2,3"
currentVal = addOne(currentVal);
//ну и потом присваиваем измененное значение
$("input").eq(7).attr("placeholder", currentVal);