问题 - 按钮颜色没有改变,我使用了 jquery click 功能
<button class="red" id="MyQuotes" href="#" title="">@Aceo.Crm.App.Resources.Shared.Order.Link_MyQuote</button>
对于这个按钮,我使用 jquery 作为
$(document).ready(function(){
$("#MyQuotes").click(function(){
$(this).css({background:"red"});
});
});
但这并不成功,我也尝试以这种方式执行此操作-
<button class="red" onclick="D()" id="MyQuotes" href="#" title="">@Aceo.Crm.App.Resources.Shared.Order.Link_MyQuote</button>
我在这里制作了javascript函数-
<script language="javascript">
function D()
{
document.body.style.backgroundColor="red";
}
</script>
是的,这次我又失败了。你能建议我一些代码吗?