Home > database >  Is it possible to save several values to a button?
Is it possible to save several values to a button?

Time:03-08

Traditionally buttons are designed to save only ONE single value, eg:

<button type="button" value="Love" onclick="fetchValue(this)"> Primary </button>

function fetchValue(_button){  
  alert(_button.value);
}

For instance, in the above HTML code, when a user clicks on the Primary button, an alert with the word Love will pop up!

For (UI/UX)User Interface/Experience purposes, I need to design a button that can hold several values and NOT just one value. This is because I plan on coupling a click event to the button to send/post all stored values.

The much desired code would be something like the code below:

<button type="button" value="Love", value2="Love", 
value3="Love" onclick="fetchValue(this)"> Primary </button>

Is there someone who might know how to resolve this or even a better solution to my problem?

Thanks in advance

CodePudding user response:

You can either store them as dataset values

<button value="love" data-value1="hate" data-value2="happy" onclick="fetchvalue(this)" >click me</button>

And access them in js like

function fetchvalue(_button){
alert(_button.value)
alert(_button.dataset.value1)
alert(_button.dataset.value2)
}

Or access them in a json like format

<button value={value1:"hate",value2:"happy" } onclick="fetchvalue(this)" >click me</button>

And access them in js like

function fetchvalue(_button){
alert(_button.value.value1)
alert(_button.value.value2)

}

CodePudding user response:

You can use data attributes for additional values.

function fetchValue(_button){  
  alert(`${_button.value} ${_button.dataset.value2}`);
}
<button type="button" value="Love" data-value2="you" onclick="fetchValue(this)"> Primary </button>

CodePudding user response:

You can use a lookup table to not clutter the HTML

Here I delegate event listeners too

const values = {
  "Love": ["Adore", "Be fond of"],
  "Hate": ["Dislike", "Despise"]
};
document.getElementById("buttons").addEventListener("click", function(e) {
  const button = e.target.closest("button");
  if (button.matches(".fetchbutton")) console.log(values[button.value]);
})
<div id="buttons">
  <button type="button" value="Love" > Love </button>
  <button type="button" value="Hate" > Hate </button>
</div>

CodePudding user response:

You can easily use the dataset to set multiple values to the button instead of using the traditional value attribute. if you use data-attribute_name then you can access all your dataset values as a single JS Object then you can choose and reformat all required values from there. For Example

function fetchValue(_button){
  // To get all value data as JS Object use _button.dataset
  console.log("JS Object Data:\r\n")
  console.log(_button.dataset)
  
  // To get all value data as JSON use JSON.stringify(_button.dataset)
  console.log("\r\n\r\nJSON Data:\r\n")
  console.log(JSON.stringify(_button.dataset))
  
  // To access the specific value you can use _button.dataset.name_here from data-name_here
  console.log("\r\n\r\nSpecific Data:\r\n")
  console.log(_button.dataset.value1)  
  console.log(_button.dataset.value2)
}
<button data-value1="Something 1" data-value2="Something 2" data-value3="Something 3" onclick="fetchValue(this)">
Click Me
</button>

  • Related