如何通过HTML属性将光标设置为指针

时间:2017-09-24 13:22:43

标签: html css attributes cursor

所以,我想知道如何通过style HTML元素属性将光标设置为指针。基本上,如何将style属性更改为在盘旋时执行某些操作然后将其设置为cursor: pointer;而不是在实际的CSS文件(内部/外部)中。

1 个答案:

答案 0 :(得分:0)

以下是您可以指定的语法和指针形状的一些示例:

<?php
require_once 'vclass.php';
require_once 'message.php';


$vreg = new Validation();

$stmt = $vreg->runQuery("SELECT * FROM validation WHERE vid=1"); 
$stmt->execute(); 
$row = $stmt->fetch(PDO::FETCH_ASSOC);  
$vusrmaile = $row['svdate'];
$vusrmail = strtotime($row['vdate']); // Convert MySQL datetime string to Unix Time (this will depend on current timezone)
$date = time(); // Current Unix time (this is independent of timezone)

            if($date > $vusrmail){ 
                $msg = "
              <div class='alert alert-error'>

                    <strong><center>Process</center></strong>
              </div>
              ";

        }
?>