我想添加一行到2單元格的表。 單元1:從輸入字段中的文本 小區2:rateit星級ratting 這裏是我的HTML:添加輸入文本和rateit星星也jsfiddle javascript不工作
<div>
<button type="button" id="cl" onclick="checkit()">Check I'm working</button>
</div>
<p><b> Please enter an item, rate it, and click <i>Add to Remedy</i>thanks</b></p>
<div class="form-group">
<div>
<label id="inp-title" class="control-label" for="formInput1">Field label</label>
<input type="text" class="form-control" id="formInput1" placeholder="Placeholder text">
</input>
</div>
<div>
<div id="rateit_id" class="rrateit"></div>
</div><br><br>
<button type="button" id="add-to-remedy" class="btn btn-default">Add to Remedy</button>
<div>
<table class="table" id="remedy-tbl">
<thead>
<tr>
<th>Remedy Item</th>
<th>Item Rating</th>
</tr>
</thead>
<tbody>
</tbody>
</table>
</div>
,這裏是我的JQuery:
$(document).ready(function() {
var rate-val= 0;
$('div#rateit_id').rateit();
function checkit(){
alert("HELLO WORLD!");
};
$("#rateit_id").click(function() {
rate-val = ($(this).rateit('value'));
});
$("#add-to-remedy").click(function()
{
var htmlToAppend =
'<tr><td>' + $('input[type=text].form-control').val() + '</td><td>' +
'<div class="rateit" data-rateit-value="' + rate-val +
'" data-rateit-ispreset="true" data-rateit-readonly="true"></div>' + '</td></tr>';
$("#remedy-tbl").append (htmlToAppend);
newTableRow.appendTo("#remedy-tbl");
});
});
,這裏是無法運作的http://jsfiddle.net/gZ9by/8/我理解的jsfiddle問題是JavaScript的不工作,但我不知道爲什麼。幫助這一點也將非常感激。 謝謝 大衛
您不能在變量名中使用連字符。 JavaScript將其解釋爲減法。 – Jason
什麼是newTableRow應該是? – Jason
到目前爲止我已經修復了一大堆。您應該真的使用您的Web瀏覽器的開發人員控制檯查看正在通過的錯誤。這裏有一個小提示讓你開始:http://jsfiddle.net/LimitedWard/br85r/2/。 – Jason