Intereting Posts

Как получить родительский элемент?

Я пытаюсь сделать функцию на PHP, которая похожа на команду alert () JavaScript, но когда я нажимаю кнопку «ОК» на одно предупреждение, все предупреждения исчезают!

Вот мой код:

<!DOCTYPE html> <?php function alert($title, $text) { $html = '<div id="alert" style="background-color:lightGray; text-align:center; height:500px; width:500px; color:black; position:fixed; top: 50%; left:50%; margin-left:-250px; margin-top:-250px;">'; $html = $html . '<h1 style="background-color:red; border-radius: 15px;">'. $title . '</h1>' . $text; $html = $html . '<br><br><button type="button" style="border-radius:25px; height:50px; width:100px; background-color:white; border:none;" onclick="document.getElementById(\"alert\").style.display=none">OK</button>'; echo $html; } alert('Testing', 'Testing <em>testing</em><b>123</b>'); alert('Testg', 'Tesng <em>tting</em><b>23</b>'); alert('Tsting', 'ing <em>tng</em><b>123</b>'); alert('Testg', 'Teng <em>tesng</em><b>123</b>'); alert('Teing', 'Teing <em>teng</em><b>123</b>'); ?> 

Я попытался использовать this , но это только заставило кнопку исчезнуть! Мне нужно найти родительский элемент. Как мне это сделать?

Использование простого javascript с parentNode :

 element.parentNode 

В jQuery:

 element.parent() 

Используйте this.parentNode чтобы получить родителя.