<p class="ms-1">其他信息: <input type="checkbox">发票
<i class="fa fa-question-circle"></i></p>
<p class="ml-1">发票抬头:
<input type="text" class="w301" placeholder="填写个人或公司名称"></p>
$(".ms-1").click(function(){
var ischeck=$(this).attr("checked");
if(ischeck==undefined){
$(".ml-1").show();
}else{
$(".ml-1").hide();
}
试试