📄 input_template.html
字号:
<html><body><!--Copyright 1998-2000 The MathWorks, Inc.$Revision: 1.3 $ $Date: 2000/05/22 20:40:06 $--><!--Modify this file to create your own HTML input form and saveas <MY_INPUT>.html where <MY_INPUT> is replaced by a name thathas meaning within the context of your application. (Rememberthat many web servers expect case-sensitive file naming.)--><!-- STEP 1Choose either the NT version or the Unix version of the form tag (depending on which platform thematweb client program will be run):--><!-- NT version: --><form action="/cgi-bin/matweb.exe" method="POST"><!-- Unix version: --><form action="/cgi-bin/matweb" method="POST"><!-- STEP 2Create a hidden field naming your M-file. ReplaceMY_M_FILE with the name of main MATLAB function of your application. (An HTML input field of type "hidden"is commonly used to pass variables to a web server.It is not displayed by the browser.)--><input type="hidden" name="mlmfile" value="my_m_file"><!-- STEP 3Add all your other HTML form tags here. Replace MY_INPUT_VARIABLE_1 with the name of an input variable inyour application.--><p>My input variable 1: <input type="text" name="my_input_variable_1"><!--Create additional input variables here.--><!-- STEP 4Create a "submit" input tag for the user to click to sendthe input to your program.--><p><input type="submit" name="Submit" value="Submit"></p></form><!-- STEP 5Add the name of your main application function to the file matweb.conf. See the matweb.conf file inthe wsdemos directory and the documentation.)--></body></html>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -