我正在尝试使用PHP创建一个链接,将我带到一个新网站,但我不希望显示实际的链接地址。我需要显示“文字在这里”,并将该文字链接到www.example.com
我有一个脚本可以为我创建一个链接,但它会显示“www.example.com”而不是“Text here”。
感谢您的帮助。
function makeURL($URL) {
$URL = eregi_replace('(((f|ht){1}tp://)[-a-zA-Z0-9@:\+.~#?&//=]+)','<a href=\\1>\\1</a>', $URL);
$URL = eregi_replace('([[:space:]()[{}])(www.[-a-zA-Z0-9@:\+.~#?&//=]+)','<a href=\\1>\\1</a>', $URL);
$URL = eregi_replace('([_\.0-9a-z-]+@([0-9a-z][0-9a-z-]+\.)+[a-z]{2,3})','<a href=\\1>\\1</a>', $URL);
return $URL;
}
答案 0 :(得分:0)
这听起来像一个HTML问题:
<a href="www.yourwebsite">Some text that is a link</a>
答案 1 :(得分:0)
据我了解,当用户将鼠标悬停在链接上时,您希望阻止显示链接地址。
这是jQuery的解决方案
<a data-link="www.example.com" class="hidden-link">Text here</a>
jQuery(function($) {
$('a.hidden-link').on('click', function(e) {
e.preventDefault();
document.location.href = $(this).data('link');
});
});