简体   繁体   中英

Pass Multiple arguments onMouseover event handler in HTML

I would like to know how to pass multiple arguments to the the function with onmouseover event handler in HTML.

Here is the following code in PHP ,

<a href='Page2.php?user=" . $userid . "' target='_blank' onMouseOver=\"writetxt('" . $info  "')\" onMouseOut=\"writetxt(0)\">" 

I would like to pass 2 arguments to writetxt() function something like this :

writetxt($arg1, $arg2)

<a href='Page2.php?user=" . $userid . "' target='_blank' onMouseOver=\"writetxt('" . $info . "," . $img . "')\" onMouseOut=\"writetxt(0)\">" 

Thanks

It should be like...

writetxt('" . $info . "', '" . $img . "');
                       ^  ^

像这样用

echo "<a href=\"Page2.php?user=" . $userid ."\" target=\"_blank\" onMouseOver=\"writetxt('" . $info . "','" . $img . "')\" onMouseOut=\"writetxt(0)\">" ;

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM