0
我不想在輸入文件上顯示"no file selected"
並用另一個按鈕替換。反應js如何在jsx對象中注入javascript
var form = React.createClass({
render : function(){
var fileStyle = { display : none };
return (
<form>
<input id="file" type="file" style={fileStyle}>
<button onClick={ /* how to perform click on file*/ }> click to add image</button>
</form>
);
}
});
我想當我點擊按鈕,然後輸入文件是執行點擊。
如何在React js中完成此操作?
你的問題不清楚。 – alexunder