Сообщение от Dilettante_Pro
|
Rise,
В iframe может быть и input, и кнопка, и много чего еще, и кнопка может становиться активной в зависимости от состояния input - я так понял задачу ТС
Что-то вроде
В основной странице
<button id="test">Тест активности в iframe</button>
<iframe id="ifr" src="http://sample.dom/iframe.html"></iframe>
<script>
test.onclick = function() {
alert(ifr.contentWindow.document.querySelector("#next").style.display);
}
</script>
В странице, загружаемой в iframe
<input id="inp" type="text">
<button id="next" style="display:none">Next</button>
<script>
inp.oninput = function() {
if(this.value) next.style.display = "block";
else next.style.display = "none";
}
</script>
|
Спасибо. Не совсем так. Вот соорудил, пожалуйста не кидайтесь ssаными тряпками
<?php
Error_Reporting(E_ALL & ~E_NOTICE);
session_start();
echo '<meta http-equiv="Content-Type" content="text/html; charset=windows-1251">';
echo '<link rel="stylesheet" type="text/css" href="order.css">';
$date = date("d.m.Y H:i").'</p>';
echo "connected as <b>".$_SESSION['user']."</b></p>";
echo $date;
?>
<form method = "post" action = "new_sql_update.php" onsubmit="return save()">
<input type="hidden" id="content1" name="content1" value="" />
<input type="hidden" id="content2" name="content2" value="" />
Items </br></br>
<iframe src="" id="items" name="items"></iframe></br>
quantity </br><input type = "textarea" id ="quantity" name = "quantity"/></br>
Remarks </br></br>
<iframe src="" id="remarks" name="remarks"></iframe></br>
<input type="submit" value="submit"/>
<input type="reset" name="reset" value="clear"/>
</form>
<form action="Exit.php" method="get">
<button type="submit"><b>EXIT</b></button>
</form>
<script>
items.document.designMode = "on";
remarks.document.designMode = "on";
function save(){
document.getElementById('content1').value = document.getElementById('items').contentWindow.document.body.innerHTML;
document.getElementById('content2').value = document.getElementById('remarks').contentWindow.document.body.innerHTML;
return true;}
</script>
Как можно сделать так, что, если во фреймах
items и
remarks и в inpute
quantity есть что-нибудь, кнопка submit появлялась или становилась активной?