用JQuery获取url和title

时间:2014-02-14 13:02:28

标签: javascript jquery

当单击嵌套img(在名为“postRatings”的Wordpress插件中)时,尝试获取3条信息到表单输入中:

  1. 来自图片父span的序列号#。
  2. 当前页面的完整网址。
  3. 当前页面的标题。
  4. 1正在运作,但是数字2和3不是...... 我的语法出了什么问题?方法错了吗?

    *这是来自Getting and passing parent info to hidden form的持续问题,感谢@Pranav C Balan,他的答案是第一次使用

    HTML

    <span id="post-ratings-XXXX" class="post-ratings"><img class="post-ratings-image"
     src="http://i.stack.imgur.com/I74mZ.png"></span>
    <form>
    <input  id="supportedCheck"  name="supportedCheck" value="#" 
    maxlength="6"/>
    <input  id="getLink"  name="getLink" value="#" 
    maxlength="100"/> 
    <input  id="projectName"  name="projectName" value="#" 
    maxlength="60"/>     </form>
    

    的Javascript

    $('.post-ratings-image').click(function(){
        $('#supportedCheck').val($(this).parent('span').attr('id').split('-')[2]);
        $('#getLink').val($('#current_url').html(url));
        $('#projectName').val($('#current_title').html(href));
    
    });
    

1 个答案:

答案 0 :(得分:5)

使用var url = window.location.href;var title = document.title;