請幫我出這一點,jQuery是在W3Schools的,但在我的Rails 2應用程序運作良好,它像支票收到錯誤沒有定義 這裏是我的html代碼:未捕獲的ReferenceError:檢查沒有定義
Checkbox: <input class="category_select" title="3" name="subject_ids[]" onchange="check(11,this)" type="checkbox" value="6"/>
<input class="category_select" title="9" name="subject_ids[]" onchange="check(11,this)" type="checkbox" value="7"/>
<input class="category_select" title="6" name="subject_ids[]" onchange="check(11,this)" type="checkbox" value="8"/>
和Jquery的如下
<script type="text/javascript" src="https://code.jquery.com/jquery-1.11.3.js">
function check(val,that) {
var total=parseInt(0,10);
$('.category_select').each(function(){
if($(this).is(':checked')==true)
total=total+parseInt($(this).attr('title'),10);
});
if (total > val){
$(that).removeAttr('checked');
alert('Total is greater than val !');
}else{
alert('Total is less than or equal to val !');
}
}
</script>
上面的代碼工作得很好,但是當我將其插入到我的Rails應用其得到錯誤,我不知道我要去的地方錯了。 任何幫助是有價值的
連我自己也不靈 –
@HemanthMC,擺脫直列單擊處理程序,並嘗試更新的代碼 – Satpal
出了什麼差錯在我的劇本?你可以幫我嗎 –