我从一开始就使用AnTLR 4 v1,但现在我愿意更改为v3,这是C#目标的最新稳定版本。
但是,在我的代码中,我使用Interpreter.SetCharPositionInLine
方法,但我注意到它在版本3中不存在。
这种方法的替代品是什么?
由于
答案 0 :(得分:0)
我找到了自己的答案。使用<tr>
<td><b>Yes or no?</b></td>
<td><input id="yes" type="radio" name="choose" value="yes"> Yes</td>
</tr>
<tr>
<td></td>
<td><input id="no" type="radio" name="choose" value="no" checked> No</td>
</tr>
<tr>
<td>
<input type="text" name="disabledtextfield" id="test" disabled />
<script type="text/javascript">
$('#no').click(function () {
$('#test').removeAttr("disabled");
});
$('#yes').click(function () {
$('#test').attr("disabled", "disabled");
});
</script>
</td>
</tr>
作为属性是解决方案。