echo "
<tr>
<td><button onclick=\"check(".$user['brandname'].")\">".$user['brandname']."</button></td>
</tr>
";
這是我的代碼,發現點擊後沒反應,是為什麼。。。。。
js部分
function check(a){
alert(a);
}
字符串參數要用引號擴起
echo "
<tr>
<td><button onclick=\"check('".$user['brandname']."')\">".$user['brandname']."</button></td>
</tr>
";