当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


p5.js value()用法及代码示例


value()函数是一个内置函数,用于设置或返回元素的值。

此函数需要p5.dom库。因此,在index.html文件的开头部分添加以下行。

<script language="javascript"
    type="text/javascript" src="path/to/p5.dom.js"> 
</script>

用法:


value()

或者

value( value )

参数:该函数接受单个参数值,该参数值以数字或字符串格式保存该值。

返回值:此函数返回元素的值。

以下示例说明了p5.js中的value()函数:

范例1:本示例使用value()函数将值显示为输出。

// Gets the value 
var input_val; 
  
function setup() {  
      
    // Canvas size 400*400  
    createCanvas(400, 200); 
      
    // Set background color 
    background('green'); 
      
    // Create an input element with its value 
    input_val = createInput('Welcome to GeeksforGeeks');   
    
    // Set the position of div element 
    input_val.position(30, 80);  
    
    // Set width of input field 
    input_val.style('width', '250px'); 
    
    // Set font-size of input text 
    input_val.style('font-size', '20px'); 
    
    // Set margin propery 
    input_val.style('margin-left', '50px'); 
}  
  
function mousePressed() { 
      
    // Display the input value 
    print(input_val.value()); 
}

输出:

范例2:本示例使用value()函数设置元素的值。

// Set the input value 
var input_val; 
  
function setup() {  
      
    // Canvas size 400*400  
    createCanvas(400, 200); 
      
    // Set background color 
    background('green'); 
      
    // Create an input element with its value 
    input_val = createInput('Welcome to GeeksforGeeks');   
    
    // Set the position of div element 
    input_val.position(30, 80);  
    
    // Set width of input field 
    input_val.style('width', '250px'); 
    
    // Set font-size of input text 
    input_val.style('font-size', '20px'); 
    
    // Set margin propery 
    input_val.style('margin-left', '50px'); 
}  
  
function mousePressed() { 
      
    // Change input value 
    input_val.value('A computer science portal'); 
}

输出:

  • 在单击元素之前:
  • 单击元素后:


相关用法


注:本文由纯净天空筛选整理自jit_t大神的英文原创作品 p5.js | value() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。