我正在研究一個腳本,它在IE和Chrome中工作正常,但鏈接在Firefox中不起作用。由Firefox在Firefox中做的Javascript鏈接
基本上我使用php來查詢數據庫並在頁面內部生成一些鏈接。相關鏈接代碼
例子:
<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 /出代碼工作正常。 onclick似乎不是。
的功能連接呼叫:
function getAccountDetails(account_id) {
accountform.aid.value=account_id;
accountform.submit();
}
這是提交一個表單:
<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>
似乎形式不被正確顯示出來......但它是一個簡單的表格一個隱藏的領域。發佈使用一些PHP生成的鏈接。 我安裝了螢火蟲,但無論是從我對操作的無知或沒有錯誤,它都報告沒有錯誤。
這並不工作,但我必須做的document.getElementById的賬戶,並呼籲從該結果提交。 – Valrus 2009-12-04 15:36:48