我有这个问题。我无法弄清楚我的代码有什么问题。我需要做的就是在 $principal_amt==$balance_amt 时隐藏内联编辑图像按钮,但我的代码什么也不做。这是我的代码:
// 编辑图片按钮:
<td <?php echo $rowclass; ?>>
<?php echo $html->linkWithImage('Edit','cashadvance/update/' . $cashadvance["id"], array(), 'editicon.png', array('class' => 'try')); ?>
</td>
//JS:
$("#principal_amt").change(function(){
var principal = $("#principal_amt").val();
$("#balance_amt").val(principal);
if("#balance_amt" == "#principal"){
$('.try').show(true);
}
else{
$('.try').hide(true);}
});