" as "function onCheckPage(){if(isNaN(beginPage )){}" and save it."/> " as "function onCheckPage(){if(isNaN(beginPage )){}" and save it.">

Home  >  Article  >  CMS Tutorial  >  How to jump to the specified paging code by entering numbers on the Dreamweaver list page

How to jump to the specified paging code by entering numbers on the Dreamweaver list page

藏色散人
藏色散人Original
2020-01-03 09:23:382063browse

How to jump to the specified paging code by entering numbers on the Dreamweaver list page

#How to jump to the specified paging code by entering numbers on the Dreamweaver list page?

Enter the number on the DEDECMS list page to jump to the specified paging code

Recommended learning: DEDECMS

Edit and open the list page Template, the default path is

Insert the following code between 93f0f5c25f18dab9d176bd4f6de5d30e9c3bca370b5104690d9ef395f2c5f8d1, you can also make JS calls.

<script type="text/javascript">// <![CDATA[ 
function onCheckPage(){ 
var beginPage = parseInt(document.beginPagefrm.beginPage.value); 
if(isNaN(beginPage)){ 
alert("请输入数字!"); 
return false; 
} 
if(beginPage <= 0 ) { beginPage = 1; } if(beginPage > 100){ 
beginPage = 100; 
} 
if(beginPage > 1 ) { 
document.beginPagefrm.action = "list_{dede:field name=&#39;typeid&#39;/}_" + beginPage + ".html"; 
} else { 
document.beginPagefrm.action = "{dede:type typeid=’0′ row=1}[field:typelink /]{/dede:type}"; 
} 
return true; 
} 
</script>

The following is the paging code of the list page. It replaces the original paging code. It has been tested and effective. You can adjust the specific display style yourself.

<div class="dede_pages"> 
<ul class="pagelist"> 
<form name="beginPagefrm" method=post action="" onsubmit="return onCheckPage()"> 
{dede:pagelist listitem="index,end,pre,next,pageno" listsize="5"/}直接到第<input size=4 
name="beginPage" value="">页<input type="submit" name="Submit" value="前住"> 
</form> 
</ul> 
</div>

The above is the detailed content of How to jump to the specified paging code by entering numbers on the Dreamweaver list page. For more information, please follow other related articles on the PHP Chinese website!

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn