共计 664 个字符,预计需要花费 2 分钟才能阅读完成。
/app/design/frontend/default/default/template/page/html/pager.phtml中增加一个简单的代码即可实现
[php]
<li style="width:65px;border:0px;margin-left:-5px"class="next-icon">
<form onsubmit="return true;"class="custom_form"action=""name="p"method="get">
<input type="text"value=""name="p"class="custom_page"style="width:20px;">
<input type="submit"class="custom_form_submit"onclick="submitCustomPages(this);"value="Go"name="submit">
</form>
<script type="text/javascript">
function submitCustomPages(self){
varinputValue = jQuery.trim(jQuery(self).prev().val());
if(inputValue && !isNaN(inputValue)){
varvv = parseInt(inputValue);
}else{
alert("Pleas ente a umber");
return false;
}return ture;
}
</script>
</li>[/php]