我试图通过这个伟大的服务Google Mobilizer“动员”我的一些页面上的链接:http://www.google.com/gwt/x?u=
有没有办法在div或元素中的所有链接前缀,所以而不是链接是site.com/link它变成http://www.google.com/gwt/x?u=site.com/link?
我在想这样的事可能有用:
if (window.location == $LINK)
window.location = "http://www.google.com/gwt/x?u=" + $LINK;
我只是不确定如何编码。如果你知道它是如何完成的,我将非常感激!
我认为这对你有用:
Mobile_Detect.php
<?php
include('Mobile_Detect.php');
$detect = new Mobile_Detect();
if ($detect->isMobile()) {header('Location: http://www.google.com/gwt/x?u=http://' . $_SERVER["HTTP_HOST"] . $_SERVER["REQUEST_URI"],PHP_URL_PATH . '');}
?>
我用this site测试它并且工作正常
我写了这个Google Mobilizer bookmarklet as I had a itch to scratch。
您可以调整代码以满足您的要求。