我想要的是当我点击单选按钮时它将我带到下一页而没有我实际点击下一页。
目前我必须点击下一页
申请表链接: http://goo.gl/CNgJq
我已经编写了这段代码,但它似乎不起作用:
(function ($, Drupal, window, document, undefined) {
$(document).ready(function() {
$('.form-radio').click(function() {
$('.next-tab mover').click();
});
});
})(jQuery, Drupal, this, this.document);
有谁能告诉我这段代码我做错了什么?
答案 0 :(得分:0)
测试用例:http://jsbin.com/acopuj/1/edit
$('.next-tab mover') // <---- that's wrong
应该是:
$('.next-tab.mover') // the button has both classes, add '.' and remove 'space'
答案 1 :(得分:0)
查看您的页面,您需要将选择器更改为$('.next-tab.mover')
。这将找到包含next-tab
和mover
类的元素。
$('.form-radio').click(function() { $('.next-tab.mover').click(); });
答案 2 :(得分:0)
你可以尝试这个
$('.form-radio').on('click', function() {
$('.next-tab.mover').trigger('click);
});