0
我用jquery創建了我的第一個插件,它根本就不工作,因爲它應該。jQuery非常簡單的插件
有人可以糾正我,如果可能的話給我發送一些jQuery教程?
我試着去抓住標籤值,並將它傳遞給另一個輸入
jQuery.fn.checktoclient = function() {
return this.each (function() {
this.map(function(){
return $(this).text()
}).get();
});
};
var radio1_val = $('input[name="form[radio1]"]:checked + label').checktoclient();
$('input#radioclient').val(radio1_val);
五月感謝您的幫助。
大教堂
非常感謝! – Dom 2010-11-20 19:06:40
@Dom歡迎您,很高興幫助! – 2010-11-20 19:07:51