从没有形式的html获取php中的变量

时间:2016-03-04 01:21:10

标签: javascript php html

我试图从html中获取一个变量到php而不使用表单。 所以我没有方法选项帖子,得到等等,因为我附上了代码,我想要变量值' buy1'在PHP中,我尝试id而不是名称,但没有工作,因为如何在不使用get或post和action属性的情况下访问php文件?我真的在这里挣扎。

jQuery(document).ready(function($) {
    var myPlaylist = [
    {
        mp3:'thumb/audio/1.mp3',
        //oga:'thumb/audio/1.ogg',
        title:'Rock and Roll',
        artist:'Artist 1',
        rating:4,
        buy:'',
        price:"<a href='#' target='_blank' title='Download Sample'><i class='cloud download icon'></i></a> **<a href='test.php' name='buy1' target='_blank' title='Purchase'><i class='payment icon'></i></a>** <a href='#' target='_blank' title='View On Spotify'><i class='spotify icon'></i></a>  <a href='#' target='_blank' title='View On SoundCloud'><i class='soundcloud icon'></i></a> <a href='#' target='_blank' title='View On Itunes'><i class='apple icon'></i></a>",

1 个答案:

答案 0 :(得分:0)

我建议使用表单或使用AJAX发送POST请求。但是,如果您确实不想使用表单或使用POST,GET等,则可能会利用PHP会话。

给这个tutorial读一读,希望能让你开始使用PHP会话。