1776
George Washington
Boston Tea Party
Treaty of Paris
Year the Declaration of Independence was signed:
Leader of the Continental Army:
Event where colonists protested by dumping tea:
Agreement that ended the American Revolution:
У меня есть веб-просмотр IOS, куда я добавляю следующий JavaScript. По какой-то причине перетаскивание по-прежнему не работает. Вот мой JavaScript [code]let dragScript = """ const dragItems = document.querySelectorAll('.drag-item'); const dropZones = document.querySelectorAll('.drop-zone');
function checkAnswers() { dropZones.forEach(zone => { const answer = zone.querySelector('.drag-item'); if (answer && answer.dataset.answer === zone.dataset.correct) { zone.classList.add('correct'); zone.classList.remove('wrong'); } else { zone.classList.add('wrong'); zone.classList.remove('correct'); } }); } """ webView.evaluateJavaScript(dragScript) { _, error in if let error = error { print("Error injecting drag script: \(error.localizedDescription)") } } [/code] Вот HTML [code]
1776 George Washington Boston Tea Party Treaty of Paris
Year the Declaration of Independence was signed: Leader of the Continental Army: Event where colonists protested by dumping tea: Agreement that ended the American Revolution: