我试图在title属性上设置css样式display none。但整个部分影响显示无。示例代码在这里
<input type="file" name="ctl15$rptCareerModal$ctl00$CareerFileUpload" id="ctl15_rptCareerModal_ctl00_CareerFileUpload" title="1" class="CareerFile">
<style>input[title]{ display : none;}</style>
答案 0 :(得分:0)
这是你想要实现的,先生?
public function getMessages($group_id){
$stmt = $this->conn->prepare("SELECT a.id, a.message, a.sentat, a.users_id, b.name FROM ?_messages a, users b WHERE a.users_id = b.id ORDER BY a.id ASC;");
$stmt->bind_param("s",$group_id);
$stmt->execute();
$result = $stmt->get_result();
return $result;}
&#13;
$( "input" ).hover(
function() {
$(this).data("title", $(this).attr("title")).removeAttr("title");
})
&#13;
答案 1 :(得分:0)
输入[title] {display:none;}
此语法将隐藏具有任何标题的所有输入类型。所以,你的整个部分都受到了影响。 请提供您的确切要求,以便能够提供正确的代码。