我有以下功能
function answerQ(value) {
var newVal = value;
alert(newVal);
}
和输入按钮
<input type="button" onClick="answerQ(this.value)" value="Answer Q2">
我怎样才能得到这个整数“2”?
答案 0 :(得分:1)
删除任何不是数字的内容
function answerQ(value) {
var newVal = +value.replace(/\D/g,'');
alert(newVal);
}