Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
jsPDFで変数を使用するにはどうすればよいですか?
var doc = new jsPDF(); doc.text(20, 20, 'variablehere');
「 + 変数 + 」などのさまざまな機能を試しましたが、誰もうまくいきませんでした。
ありがとう!
他の機能と同じように。
var variable = 'test'; doc.text(20, 20, variable);
ライブラリ関数について特別なことは何もありません。