Ben bir senaryo üzerinde çalışıyorum ve IE ve Chrome çalışıyor, ancak bağlantılar Firefox'ta çalışmaz.
Temelde bir veritabanını sorgulamak ve sayfa içinde bazı bağlantılar oluşturmak için php kullanıyorum.
Ilgili link kod örneği:
<TD class="bodycopyblue"
onmouseover="this.style.background='#FFFF80';this.style.cursor='pointer'"
onmouseout="this.style.background='#FFFFFF'"
onclick="getAccountDetails(<?php print $accountinfo['audio_account_id']; ?>)"
>view CDRs</TD>
Onmouseover / çıkış kod çalışıyor. Onclick olmak görünmüyor.
Bağlantı çağıran fonksiyonu:
function getAccountDetails(account_id) {
accountform.aid.value=account_id;
accountform.submit();
}
Bir form göndererek Hangi:
<FORM id="accountform"
action="accountdetails.php?month=<?php print $cdate['mon']; ?>&year=<?php print $cdate['year']; ?>"
method="post">
<INPUT id="aid" name="aid" type="hidden" value=0>
</FORM>
The Form doesn't seem to be showing up correctly... but it's a simple form with a single hidden field. Posted using a link generated by some php. I installed firebug, but either from my ignorance of its operation or nothing being wrong, it reports no errors.