写了一个翻页的按钮,但是只能在google浏览器翻到页,IE翻不了...
请问怎么写才能实现在IE翻页(用按钮的)?
我的一个代码如下:
<a href="admin_index.php?page=<?php echo $page - 1;?>"><input value=上一页 type=button name=first oncilik=""></a>
写了一个翻页的按钮,但是只能在google浏览器翻到页,IE翻不了...
请问怎么写才能实现在IE翻页(用按钮的)?
我的一个代码如下:
<a href="admin_index.php?page=<?php echo $page - 1;?>"><input value=上一页 type=button name=first oncilik=""></a>
试试这个
<input value=上一页 type=button name=first oncilik="window.location='admin_index.php?page=<?php echo $page-1;?>'">