admin管理员组文章数量:1338956
I'm try to run this function, which grabs all the checked checkbox values in to a ma separated string, and converts ","
in to ", "
, so it reads better. The problem is I'm getting a strange error:
$('.name_boxes').live('click', function() {
var all_boxes = $('.name_boxes');
var all_boxes_values = []
for (var i = 0; i < all_boxes.length; i++) {
if (all_boxes[i].checked) {
all_boxes_values.push(all_boxes[i].value)
}
}
var all_boxes_values_clean = all_boxes_values.replace(/,/g,", ");
alert(all_boxes_values_clean);
});
The console error says:
Uncaught TypeError: Object Aaron Ramsey,Aaron Renfree has no method 'replace'.
I'm not getting the alert box.
This is a bit beyond me, can anybody explain what I'm doing wrong?
I'm try to run this function, which grabs all the checked checkbox values in to a ma separated string, and converts ","
in to ", "
, so it reads better. The problem is I'm getting a strange error:
$('.name_boxes').live('click', function() {
var all_boxes = $('.name_boxes');
var all_boxes_values = []
for (var i = 0; i < all_boxes.length; i++) {
if (all_boxes[i].checked) {
all_boxes_values.push(all_boxes[i].value)
}
}
var all_boxes_values_clean = all_boxes_values.replace(/,/g,", ");
alert(all_boxes_values_clean);
});
The console error says:
Uncaught TypeError: Object Aaron Ramsey,Aaron Renfree has no method 'replace'.
I'm not getting the alert box.
This is a bit beyond me, can anybody explain what I'm doing wrong?
Share Improve this question edited Feb 21, 2012 at 21:51 pimvdb 155k80 gold badges311 silver badges356 bronze badges asked Feb 21, 2012 at 21:51 TheCarverTheCarver 19.7k27 gold badges103 silver badges153 bronze badges 1-
1
replace
-method can only use for strings, not forArray
-object. Create a loop for replacing actual values inall_boxes_values
. – Teemu Commented Feb 21, 2012 at 21:58
2 Answers
Reset to default 11Although alert(some_array)
prints a string representation of the array, the array itself is not a string. Thus, it does not have .replace
. alert
is forced to convert it into a string because the alert box can only show characters.
You can simply join using a custom separator, though. join
is a function of arrays:
var all_boxes_values_clean = all_boxes_values.join(", ");
As a side note, I remend console.log
over alert
because it:
- shows the actual object/array instead of a string representation (especially useful with objects instead of the useless
[object Object]
you receive withalert
) - frees you from closing the popup each time
- keeps track of other logs so that you have an actual log of logs
all_boxes_values
is an array, not a strings and thus it has no replace
method.
Try
var all_boxes_values_clean = all_boxes_values.join(", ");
If you insist on performing regular expressions, convert an array to string first: all_boxes_values.toString()
.
本文标签: javascriptObject has no method 39replace39Stack Overflow
版权声明:本文标题:javascript - Object has no method 'replace' - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743563121a2503285.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论