当单击嵌套img
(在名为“postRatings”的Wordpress插件中)时,尝试获取3条信息到表单输入中:
span
的序列号#。 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));
});
答案 0 :(得分:5)
使用var url = window.location.href;
和var title = document.title;