search
HomeBackend DevelopmentPHP Tutorialphp新手: 如何获取超链接的title值?

如题。

如一个超链接:

超链接标题9

用 $_GET['title']可以获取" HypeLinkTitle",那如何获取" 超链接标题8"和" 超链接标题9"?

希望大虾能就这个超链接给点提示,谢谢!


回复讨论(解决方案)

通过js传输

超链接标题9


var _h = $('hplink').html();

然后呢?  初学php,望能详细点哈。

通过js传输


超链接标题9


var _h = $('hplink').html();

然后呢?  初学php,望能详细点哈。

$('#hplink').html();

$('#hplink').attr('title');


通过js传输


超链接标题9


var _h = $('hplink').html();

然后呢?  初学php,望能详细点哈。
<!DOCTYPE html><html>	<head></head>		<script type="text/javascript" src="jquery-1.7.1.min.js"></script>	<script type="text/javascript">		$(function (){			$('#xxxxx').click(function (){				var t = $(this).attr('title');				var h = $(this).html();				var r = $(this).attr('rel');				//字符串连接,				var u = r + '&testTitle='+ t + '&testHtml=' + h;				alert(u);			});		})	</script>	<body>		<a href="javascript:;" rel="http://www.example.com/?title=HypeLinkTitle" title="testTitle" id="xxxxx">testHtml</a>	</body></html>



通过js传输


超链接标题9


var _h = $('hplink').html();

然后呢?  初学php,望能详细点哈。
<!DOCTYPE html><html>	<head></head>		<script type="text/javascript" src="jquery-1.7.1.min.js"></script>	<script type="text/javascript">		$(function (){			$('#xxxxx').click(function (){				var t = $(this).attr('title');				var h = $(this).html();				var r = $(this).attr('rel');				//字符串连接,				var u = r + '&testTitle='+ t + '&testHtml=' + h;				alert(u);			});		})	</script>	<body>		<a href="javascript:;" rel="http://www.example.com/?title=HypeLinkTitle" title="testTitle" id="xxxxx">testHtml</a>	</body></html>


谢谢。也感谢 fire53。

获取这个我会啊,现在的问题是,我要如何把这取得的值传回到php?
想实现的作用是,点击这个链接,php后台就根据这个链接超本文从数据库读取相关的文章。
其他都弄好了,现在就差如何将获取的超文本传给php了。
链接的形式是
超链接标题8



通过js传输


超链接标题9


var _h = $('hplink').html();

然后呢?  初学php,望能详细点哈。
<!DOCTYPE html><html>	<head></head>		<script type="text/javascript" src="jquery-1.7.1.min.js"></script>	<script type="text/javascript">		$(function (){			$('#xxxxx').click(function (){				var t = $(this).attr('title');				var h = $(this).html();				var r = $(this).attr('rel');				//字符串连接,				var u = r + '&testTitle='+ t + '&testHtml=' + h;				alert(u);			});		})	</script>	<body>		<a href="javascript:;" rel="http://www.example.com/?title=HypeLinkTitle" title="testTitle" id="xxxxx">testHtml</a>	</body></html>


这种 onclick + rel 的形式,百度蜘蛛可以正常获取链接并爬过去么?

传回到php ?

$('#hplink').attr('title');



谢谢,如何将这值传给php呢?希望能详细点,谢谢!

传回到php ?


版主的阿大,是的。
想实现的作用是,点击这个链接,php后台就根据这个链接的超本文从数据库读取相关的文章。蜘蛛要能爬的到。

js获取到了,然后可以通过get或者post传回啊。。。


直接都放到问号后面不就行啦
http://www.example.com/?title=HypeLinkTitle__超链接标题8__超链接标题9__超链接标题100
get后再explode分割开来

$title_list = explode("__", $_GET['title']);
echo $title_list[0];
echo $title_list[1];
echo $title_list[100];


传回到php ?


版主的阿大,是的。
想实现的作用是,点击这个链接,php后台就根据这个链接的超本文从数据库读取相关的文章。蜘蛛要能爬的到。

你这是要动态取文章?  
用ajax把参数传后台处理,success方法里把返回的文章内容显示在页面上。这样蜘蛛是抓不到的啊。

js获取到了,然后可以通过get或者post传回啊。。。


应该就是这个办法,能就这个链接给点代码提示么?

你这是要动态取文章?  
用ajax把参数传后台处理,success方法里把返回的文章内容显示在页面上。这样蜘蛛是抓不到的啊。


蜘蛛抓不到就没用咯。谢谢

直接都放到问号后面不就行啦
http://www.example.com/?title=HypeLinkTitle__超链接标题8__超链接标题9__超链接标题100
get后再explode分割开来

$title_list = explode("__", $_GET['title']);
echo $title_list[0];
echo $title_list[1];
echo $title_list[100];



传回到php ?


版主的阿大,是的。
想实现的作用是,点击这个链接,php后台就根据这个链接的超本文从数据库读取相关的文章。蜘蛛要能爬的到。
这种方法是可以的,但问题是现在链接的形式就已经定死了。谢谢

PHP没法活的HTML页面上的元素值,只能通过$_GET,$_POST等获得form元素里的值。

这个只能通过第三方传输。

你可以先把这个文档放在文本框中,然后通过$(".标记类")获取,也可以通过js方法判断隐藏和显示不就行了么,为什么非要搞什么超链接》》

你可以先把这个文档放在文本框中,然后通过$(".标记类")获取,也可以通过js方法判断隐藏和显示不就行了么,为什么非要搞什么超链接》》


是一个web程序,不搞链接蜘蛛不好整呐,谢谢!

PHP没法活的HTML页面上的元素值,只能通过$_GET,$_POST等获得form元素里的值。

这个只能通过第三方传输。


嗯,谢谢。如果两个都是泼诶取泼呢?


PHP没法活的HTML页面上的元素值,只能通过$_GET,$_POST等获得form元素里的值。

这个只能通过第三方传输。


嗯,谢谢。如果两个都是泼诶取泼呢?

泼诶取泼? PHP?

我想了下,我回答错了

html的话,可以用curl抓取回来用正则匹配
php的话用可以用fopen, 去除多余的字符(空格换行之类的),再正则匹配。

不要要实现你这个想法,还是按楼上的

一下子全部放到dom里,用js切换dom的显示和隐藏就好了,这样蜘蛛也能抓得到

不要要实现你这个想法,还是按楼上的

一下子全部放到dom里,用js切换dom的显示和隐藏就好了,这样蜘蛛也能抓得到


嗯,谢谢。

/ https://www.baidu.com/

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-

Build a React App With a Laravel Back End: Part 2, ReactBuild a React App With a Laravel Back End: Part 2, ReactMar 04, 2025 am 09:33 AM

This is the second and final part of the series on building a React application with a Laravel back-end. In the first part of the series, we created a RESTful API using Laravel for a basic product-listing application. In this tutorial, we will be dev

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

Notifications in LaravelNotifications in LaravelMar 04, 2025 am 09:22 AM

In this article, we're going to explore the notification system in the Laravel web framework. The notification system in Laravel allows you to send notifications to users over different channels. Today, we'll discuss how you can send notifications ov

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

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

Repo: How To Revive Teammates
1 months agoBy尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
1 months agoBy尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Atom editor mac version download

Atom editor mac version download

The most popular open source editor

mPDF

mPDF

mPDF is a PHP library that can generate PDF files from UTF-8 encoded HTML. The original author, Ian Back, wrote mPDF to output PDF files "on the fly" from his website and handle different languages. It is slower than original scripts like HTML2FPDF and produces larger files when using Unicode fonts, but supports CSS styles etc. and has a lot of enhancements. Supports almost all languages, including RTL (Arabic and Hebrew) and CJK (Chinese, Japanese and Korean). Supports nested block-level elements (such as P, DIV),

SublimeText3 Linux new version

SublimeText3 Linux new version

SublimeText3 Linux latest version

VSCode Windows 64-bit Download

VSCode Windows 64-bit Download

A free and powerful IDE editor launched by Microsoft

ZendStudio 13.5.1 Mac

ZendStudio 13.5.1 Mac

Powerful PHP integrated development environment