search
HomeBackend DevelopmentPHP Tutorial求助帮写一段代码

要求在一个php里实现输入不同的密码读取不同的DIV
比如输入密码123 显示“下载链接一”
输入密码1234 显示“下载链接二”


回复讨论(解决方案)

给你个思路,用AJAX,将输入的密码传到PHP去验证,根据返回值的不同,用JS控制DIV的显示。

谢谢楼上
但是我完全不懂代码。。。

function func(pwd){$.post("xxxx.php",{pwd:pwd},function(result){      $("#a_xx").text(result.title);      $("#a_xx").attr('href',result.url);});}

谢谢楼上
但是我完全不懂代码。。。 好一句完全不懂代码,那你来发个屁帖啊。就算写给你了你知道这些代码放在文件哪个位置吗?先去学基础知识吧,别什么都不会就到CSDN来伸手要饭。

楼上那位也太直接了吧,建议楼主说明你需求的来路,为什么要做这个事情,如果单纯的为了实现这样的功能,而自己又一点代码不懂,那也太那个什么的了,建议:你找一下身边认识的人来给你解答一下。

引用 2 楼 u010363136 的回复:谢谢楼上
但是我完全不懂代码。。。好一句完全不懂代码,那你来发个屁帖啊。就算写给你了你知道这些代码放在文件哪个位置吗?先去学基础知识吧,别什么都不会就到CSDN来伸手要饭。
你每天吃完屎出门的?

引用 4 楼 nirvana_newbie 的回复:引用 2 楼 u010363136 的回复:谢谢楼上
但是我完全不懂代码。。。好一句完全不懂代码,那你来发个屁帖啊。就算写给你了你知道这些代码放在文件哪个位置吗?先去学基础知识吧,别什么都不会就到CSDN来伸手要饭。
你每天吃完屎出门的? 对不起,我错了。我太偏激了,素质太差了,由此显现我内心的狂躁与病态,此种状态亟待改变,多谢楼主的帖子。在此郑重道歉,对我之前的言论表示羞愧,希望楼主原谅。

建立两个页面,分别为a.php和b.php
a.php

<?php header('Content-type: text/html; charset=utf-8');?><style>div{display:none}</style><script src="https://ajax.googleapis.com/ajax/libs/jquery/1.8.3/jquery.min.js"></script><script type="text/javascript">	$(function(){		$("#abv").click(function(){			var t=$("#a").val();			$.getJSON("b.php",{id:t},function(result){				$("div").hide();				if(result==1){							$("#div1").show();				}else if(result==2){								$("#div2").show();				}else{					alert("密码有误");					return false;				}			});		});	})</script><input type="text" id="a"/><!--把密码域改成文本域是为了让你看的更直观,如果不习惯,请把type="text"改成type="password"--><input type="button" id="abv" value="测试用按钮"/><div id="div1">下载链接1</div><div id="div2">下载链接2</div> 

b.php
<?php	$id=$_GET['id'];	if($id==123){		echo 1;	}else if($id==1234){		echo 2;	}else{		echo 3;	}?>

建立两个页面,分别为a.php和b.php
a.php
JavaScript code?12345678910111213141516171819202122232425262728293031323334

引用 6 楼 u010363136 的回复:引用 4 楼 nirvana_newbie 的回复:引用 2 楼 u010363136 的回复:谢谢楼上
但是我完全不懂代码。。。好一句完全不懂代码,那你来发个屁帖啊。就算写给你了你知道这些代码放在文件哪个位置吗?先去学基础知识吧,别什么都不会就到CSDN来伸手要饭。
你每天吃完屎出门的?对不起,我错了。我太偏激了,素质太差……

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
Working with Flash Session Data in LaravelWorking with Flash Session Data in LaravelMar 12, 2025 pm 05:08 PM

Laravel simplifies handling temporary session data using its intuitive flash methods. This is perfect for displaying brief messages, alerts, or notifications within your application. Data persists only for the subsequent request by default: $request-

cURL in PHP: How to Use the PHP cURL Extension in REST APIscURL in PHP: How to Use the PHP cURL Extension in REST APIsMar 14, 2025 am 11:42 AM

The PHP Client URL (cURL) extension is a powerful tool for developers, enabling seamless interaction with remote servers and REST APIs. By leveraging libcurl, a well-respected multi-protocol file transfer library, PHP cURL facilitates efficient execution of various network protocols, including HTTP, HTTPS, and FTP. This extension offers granular control over HTTP requests, supports multiple concurrent operations, and provides built-in security features.

Simplified HTTP Response Mocking in Laravel TestsSimplified HTTP Response Mocking in Laravel TestsMar 12, 2025 pm 05:09 PM

Laravel provides concise HTTP response simulation syntax, simplifying HTTP interaction testing. This approach significantly reduces code redundancy while making your test simulation more intuitive. The basic implementation provides a variety of response type shortcuts: use Illuminate\Support\Facades\Http; Http::fake([ 'google.com' => 'Hello World', 'github.com' => ['foo' => 'bar'], 'forge.laravel.com' =>

12 Best PHP Chat Scripts on CodeCanyon12 Best PHP Chat Scripts on CodeCanyonMar 13, 2025 pm 12:08 PM

Do you want to provide real-time, instant solutions to your customers' most pressing problems? Live chat lets you have real-time conversations with customers and resolve their problems instantly. It allows you to provide faster service to your custom

Explain the concept of late static binding in PHP.Explain the concept of late static binding in PHP.Mar 21, 2025 pm 01:33 PM

Article discusses late static binding (LSB) in PHP, introduced in PHP 5.3, allowing runtime resolution of static method calls for more flexible inheritance.Main issue: LSB vs. traditional polymorphism; LSB's practical applications and potential perfo

PHP Logging: Best Practices for PHP Log AnalysisPHP Logging: Best Practices for PHP Log AnalysisMar 10, 2025 pm 02:32 PM

PHP logging is essential for monitoring and debugging web applications, as well as capturing critical events, errors, and runtime behavior. It provides valuable insights into system performance, helps identify issues, and supports faster troubleshoot

How to Register and Use Laravel Service ProvidersHow to Register and Use Laravel Service ProvidersMar 07, 2025 am 01:18 AM

Laravel's service container and service providers are fundamental to its architecture. This article explores service containers, details service provider creation, registration, and demonstrates practical usage with examples. We'll begin with an ove

Customizing/Extending Frameworks: How to add custom functionality.Customizing/Extending Frameworks: How to add custom functionality.Mar 28, 2025 pm 05:12 PM

The article discusses adding custom functionality to frameworks, focusing on understanding architecture, identifying extension points, and best practices for integration and debugging.

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Best Graphic Settings
2 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. How to Fix Audio if You Can't Hear Anyone
2 weeks agoBy尊渡假赌尊渡假赌尊渡假赌

Hot Tools

DVWA

DVWA

Damn Vulnerable Web App (DVWA) is a PHP/MySQL web application that is very vulnerable. Its main goals are to be an aid for security professionals to test their skills and tools in a legal environment, to help web developers better understand the process of securing web applications, and to help teachers/students teach/learn in a classroom environment Web application security. The goal of DVWA is to practice some of the most common web vulnerabilities through a simple and straightforward interface, with varying degrees of difficulty. Please note that this software

EditPlus Chinese cracked version

EditPlus Chinese cracked version

Small size, syntax highlighting, does not support code prompt function

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

MantisBT

MantisBT

Mantis is an easy-to-deploy web-based defect tracking tool designed to aid in product defect tracking. It requires PHP, MySQL and a web server. Check out our demo and hosting services.