<select class="select">
<option value="1">Выбрать</option>
<option value="2" attribute="two">2</option>
<option value="3" attribute="three">3</option>
<option value="4" attribute="four">4</option>
<option value="5" attribute="five">5</option>
<option value="6" attribute="six">6</option>
</select>
<div class="list"></div>
var select = document.getElementsByClassName('select')[0],
options = select.getElementsByTagName('option'),
divList = document.getElementsByClassName('list')[0];
window.onload = () => {
for (let i = 0; i < options.length; i++) {
divList.innerHTML +='<div> Название option:' + options[i].innerHTML+ ' Аттрибут у option:' + options[i].getAttribute('attribute') + '</div>'
}
}
while ( have_posts() ) : the_post();
.....
endwhile;
setup_postdata();
$('.ulightbox').click(function(){
var getvalue = $(this).attr('href');
// потом используйте метод closest для поиска ближайшего общего родителя элемента. Ищите в нем инпут и вставляйте полученное значение
$(this).closest('.parent').find('input.class').val(getvalue);
})
$('.photo-link').val(function() {
return $(this).parent().find('.ulightbox').attr('href');
});
document.querySelectorAll('.photo-link').forEach(n => {
n.value = n.parentNode.querySelector('.ulightbox').getAttribute('href');
});
$('.news-full-text img')
.wrap('<div class="image"></div>')
.after('<div class="image-social">социальные кнопки</div>');
$('.news-full-text img').replaceWith(function() {
return `
<div class="image">
${this.outerHTML}
<div class="image-social">социальные кнопки</div>
</div>`;
});
$('.news-full-text').html((i, html) => html.replace(/<img .*?>/g, m => `
<div class="image">
${m}
<div class="image-social">социальные кнопки</div>
</div>
`));
<div id="test" data-click="0">
$(document).ready(function(){
var interval,
count,
tick,
selectedVal = $.cookie("selected-val");
function refresh() {
clearInterval(interval);
clearInterval(count);
tick = 0;
$('#reload-nc').click();
$('.timer').text(tick + ' c.');
count = setInterval(function(){
tick++;
$('.timer').text(tick + ' c.')
}, 1000);
interval = setInterval(function(){
$('#reload-nc').click();
}, $('#select').val() * 1000);
}
if (selectedVal) {
$("#select").val(selectedVal);
refresh();
}
$("#select").on("change", function(){
var selection = $(this).val();
$.cookie("selected-val", selection, {expires: 365, path: '/'})
refresh();
});
});
А как упростить - это вы уже сами подумайте. var head = jQuery("#mchatIfm2").contents().find("head");
var css = '<style type="text/css">' +
'.mchat-body{background:blue;} ' +
'</style>';
jQuery(head).append(css);
$('.mchat-body').css('background', 'blue');
$('.mchat-body').css('background', color);
function h (a,b:real):real;
begin
result:=(a/1+sqr(a))+(b/1+sqr(a))-((a-b)*sqr(a-b));
end;
program transformation;
var
matrix: array of array of integer;
n, m: integer;
i, j: integer;
begin
Write ('M = ');
ReadLn (m);
Write ('N = ');
ReadLn (n);
// Создание размера динамического массива
SetLength(matrix, m);
for i := 0 to m - 1 do
SetLength(matrix[i], n);
// Заполнение матрицы
Randomize;
for i := 0 to m - 1 do
for j := 0 to n - 1 do
matrix[i, j] := Random(-100, 100);
// Вывод получившейся матрицы
WriteLn();
WriteLn('Исходная матрица:');
WriteLn();
for i := 0 to m - 1 do
begin
for j := 0 to n - 1 do
Write(matrix[i, j]:5);
WriteLn();
end;
// Преобразование матрицы
WriteLn();
WriteLn('Преобразованная матрица:');
WriteLn();
for i := 0 to m - 1 do
begin
for j := 0 to n - 1 do
begin
if matrix[i, j] < 0 then
matrix[i, j] := -1;
if matrix[i, j] > 0 then
matrix[i, j] := 1;
Write(matrix[i, j]:3);
end;
WriteLn();
end;
end.