Dinamik olarak oluşturulan form öğeleri seçmek için açılamıyor (ajax)

0 Cevap php

Ben bir main.php sayfa var

Aşağıdaki kod ana biçimde kodlanmış

<form action="test.php" method="POST">

Aşağıdaki AJAX kullanarak dinamik olarak oluşturulan kodu

<input type="checkbox" value="test" name="test[]"/>
<input type="checkbox" value="test1" name="test[]"/>

<input type="submit" value="go">

ideally speaking on clicking the go button the page should submit to test.php page with the post value of the check elements but now i find no action is taken by the browser. Also i find no error message in error console. this used to work upto firefox 3.5 and IE 8. However in Firefox 3.6 the dynamically generated form elements are not recognized at all Is there a mistake in the code and is a there a work around

0 Cevap