<form name="checkListForm">
<input type="text" name="checkListItem"/>
</form>
<div id="button">Add!</div>
<br/>
<div class="list"></div>
<script>
$(document).ready(function(){
$('#button').click(function(){
var toAdd = $('input[name=checkListItem]').val();
$('.list').append('<img src="http://latex.codecogs.com/gif.latex?\frac{x} {y}"/>');
});
$(document).on('click', '.item', function(){
$(this).remove();
});
});
</script>
所以我在这里有这样的表格,当我按下按钮时,应将this乳胶方程附加到html元素.list。但是我得到了this 我正在使用这个lates equation js file form codecogs:codecogs.com/latex/htmlequations.php
答案 0 :(得分:2)
您需要转义行中的\
字符:
$('.list').append('<img src="http://latex.codecogs.com/gif.latex?\frac{x}{y}"/>');
所以,请继续将其更改为:
$('.list').append('<img src="http://latex.codecogs.com/gif.latex?\\frac{x}{y}"/>');
在您的版本中,您试图转义不正确的f
字符。