dongshou1856 2017-06-01 19:53
浏览 29
已采纳

如何缩短包含元数据的长URL,以便在javascript中工作

Got a wordpress blog with tons of posts fully built by custom fields.

I'm now working on header.php file

I'm building a javascript including a window.open url containing the mentioned custom fields.

This url is so long, and is going to be repeated over 20 times within the script.

I'm then looking for a way to define the the whole url within a single string $long_url within the header.php file (I can't use goo.gl or bit.ly etc. for obvious reasons, since the url calls custom fields)

So, current script says...

window.open
http://website.com/?value1=<?php echo get_post_meta($post->ID, 'value1', true); ?>&value2=<?php echo get_post_meta($post->ID, 'value2', true); ?>&value3=etc...

I want to replace the mentioned url with a single string...

window.open
$long_url

How can I do this?

  • 写回答

1条回答 默认 最新

  • drkbpwk609294 2017-06-01 20:01
    关注

    Just put the PHP variable inside the JavaScript string.

    <?php $long_url = 'http://website.com/?value1=' . get_post_meta($post->ID, 'value1', true) . '&value2='. get_post_meta($post->ID, 'value2', true);?>
    window.open("<?=$long_url?>");
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 无线电能传输系统MATLAB仿真问题
  • ¥50 如何用脚本实现输入法的热键设置
  • ¥20 我想使用一些网络协议或者部分协议也行,主要想实现类似于traceroute的一定步长内的路由拓扑功能
  • ¥30 深度学习,前后端连接
  • ¥15 孟德尔随机化结果不一致
  • ¥15 apm2.8飞控罗盘bad health,加速度计校准失败
  • ¥15 求解O-S方程的特征值问题给出边界层布拉休斯平行流的中性曲线
  • ¥15 谁有desed数据集呀
  • ¥20 手写数字识别运行c仿真时,程序报错错误代码sim211-100
  • ¥15 关于#hadoop#的问题